General git tips

git config remote.origin.fetch 'refs/heads/*:refs/heads/*'

Setup a local git server

These steps are from this page: http://www.spinellis.gr/blog/20130619/

    # cd <destination directory>
    # git init --bare <repo_name>.git
    # chmod g+rx <repo_name>.git
    # chown -R :gitgroup <repo_name>.git
    # cd <repo_name>.git
    # git config core.sharedRepository group
    # find . -type d -print0 | xargs -0 chmod 2770
    # find . -type f -print0 | xargs -0 chmod g=u