I am trying to pull changes from remote branch but getting an error which doesn\'t make sense
when I do
git pull
I get back
<
You should:
That would be:
git checkout master
git fetch
git rebase origin/master
A shorter version of the above set of commands would be the following single command:
git pull --rebase