there is no tracking information for the current branch

Solutions on MaxInterview for there is no tracking information for the current branch by the best coders in the world

showing results for - "there is no tracking information for the current branch"
Emil
21 Jan 2019
1git branch --set-upstream-to=origin/master master
2git pull
3
Alice
29 Mar 2020
1# You could specify what branch you want to pull
2
3git pull origin master
4
5# Or you could set it up so that your local master branch tracks github master
6# branch as an upstream:
7
8git branch --set-upstream-to=origin/master master
9git pull
Mia
27 Mar 2019
1$ git branch
2* master
3
similar questions