I got this message from Git:
You asked to pull from the remote ‘origin’, but did not specify
a branch. Because this is not the default configured remote
for your current branch, you must specify a branch on the command line.
Can anyone explain it? and more important how to fix it?
You have to tell git which branch you want to pull from the “origin” remote repos.
I guess you want the default branch (master) so
git pull origin mastershould fix your problem.See
git help branch,git help pullandgit help fetchfor more informations.