Answers for "develop there is no tracking information for the current branch."

CSS
5

there is no tracking information for the current branch

git branch --set-upstream-to=origin/master master
git pull
Posted by: Guest on September-16-2020
0

There is no tracking information for the current branch

# You could specify what branch you want to pull

git pull origin master

# Or you could set it up so that your local master branch tracks github master
# branch as an upstream:

git branch --set-upstream-to=origin/master master
git pull
Posted by: Guest on June-25-2021

Code answers related to "develop there is no tracking information for the current branch."

Browse Popular Code Answers by Language