检查其他人在git上完成的提交

时间:2014-04-03 22:13:46

标签: git

我的队友已经在git repo上推了一些代码更改但是当我使用命令git log时,我无法在提交历史记录中看到他的提交。我只能在拉代码时查看它。有没有办法在不使用git pull拉代码的情况下查看所有人提交的所有提交。

3 个答案:

答案 0 :(得分:1)

您需要check the log on the remote repository而不是使用git log remote remotename/branchname的本地人。例如:

git log remote origin/master

答案 1 :(得分:1)

要查看已向上游添加了哪些提交,可以使用带有以下命令的分支运行git log:

git log origin/<branch>

更多信息:https://www.atlassian.com/git/tutorial/remote-repositories#!fetch

答案 2 :(得分:1)

原始海报问:

  

有没有办法在不使用git pull拉代码的情况下查看所有人提交的所有提交。

答案是。要查看远程存储库中最新更改的日志, 您必须首先获取或提取 这些更改:

git fetch origin
git log origin/master

或者

git checkout master
git pull origin master
git log origin/master