“fetch –all” in a git bare repository doesn’t synchronize local branches to the remote ones
Instead of copying the ref files around (bad bad!) use git update-ref Note that you can have what you wanted pretty easily to a bare repository when pushing instead of pulling. Use this: git clone –mirror . /tmp/bareclone to create the bare repository that you want to keep completely in synch Now, to synch all … Read more