>>107566060
if you've made local changes (i.e. modified the files in that repo) then you gotta backup those files, then $ git checkout current-branch && git pull
and apply the difference between your local files and the newly pulled files manually
if you haven't, then the branch probably got restructured, in that case $ git fetch && git branch -m current-branch old-branch && git branch current-branch origin/master && git checkout current-branch && git branch -d old-branch && git merge FETCH_HEAD && git checkout .
`git pull' is short for $ git fetch && git merge