Logo
Color-Of-Code
  Home   All tags   Terms and Conditions

Git: Bare

December 28, 2018

Git Bare

git clone --bare `<remote url>` `<local path>`
pushd `<local path>`
git config remote.origin.fetch 'refs/heads/*:refs/heads/*'

After that git fetch will update all branches.

See SO: Git Fetch fails to work on bare repo, but git pull works on normal repo for details