I am on Git version 2.6.3, and get this message when just running
git pull
\"There is no tracking information for the current br
You can use this command to set the upstream of your current branch
$ git branch --set-upstream-to=origin/master
This way your setting the upstream branch to master by default when pulling and pushing without actually using a push
or pull
command.
Now try to git pull
and it should start gathering everything from your repository and after that it will say it's Already up-to-date
If you have any further questions, I'll be happy to assist.