I have made a bare repository (MY_LOCAL_REP) out of a public git repository hosted in github:
~$ git clone --bare <github repository location> The github repository had been updated (a branch was created) and I want to fetch the changes to MY_LOCAL_REP, so I ran
~$ git fetch The command completes successfully, but when I run
~$ git branch I don't see the new branch. What am I doing wrong? what is the correct way to 'pull' from a github repository into a bare repository?
Thanks!