如何使用命令行了解我的分支是否在Git中的远程存储库后面?

时间:2013-03-08 10:16:40

标签: git

我应该在Windows中使用什么命令来了解我是否在存储库后面?

2 个答案:

答案 0 :(得分:3)

只需输入

即可
git status

它会告诉你你前面有多少次提交:

ahead by one commit

对于“后面”,你必须做

git fetch

然后是git status

enter image description here

答案 1 :(得分:1)

首先,你必须从存储库中获取新的引用:

git fetch <remote> <branch>

然后使用

git status

会告诉你你有多少提交。