我一直在相对较短的时间内使用github,并且我一直使用客户端执行提交和请求。我决定昨天从git bash尝试一下,我成功创建了一个新的repo和提交的文件。
今天,我从另一台计算机对存储库进行了更改,已经提交了更改,现在我回到家并执行了git pull
更新本地版本的操作,我得到了:
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 develop origin/<branch>
此仓库的唯一贡献者是我,并且没有分支机构(只是管理员)。我在Windows上,并且执行了git bash的拉动:
git状态:
$ git status
# On branch master
nothing to commit, working directory clean
git分支:
$ git branch
* master
我究竟做错了什么?
git pull
。
git remote -v
?那是什么意思