I only have branch master and im getting this error every time i try to \"git pull\":
error: Couldn\'t set refs/remotes/origin/master
From /var/lib/git/xxx/p
What happened over here?
The local references to your remote branches were changed and hence when you run git pull, git doesn't find any corresponding remote branches and hence it fails.
git remote prune origin
actually cleans this local references and then run git pull again.
Suggestion - Please run with --dry-run option for safety