git pull没有指定branch报错

没有指定branch报错

There is no tracking information for the current branch.

Please specify which branch you want to merge with.

See git-pull(1) for details

git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with

git branch --set-upstream-to=origin/<branch> master


设置master对应远程仓库的master分支

git branch --set-upstream-to=origin/master master


以后我们每次push或者pull的时候,只需要输入git push 或者git pull
在此之前,我们必须要指定想要push或者pull的远程分支

git push origin master

git pull origin master.


你可能感兴趣的:(git)