是否可以查看远程所有分支的提交历史记录?

时间:2016-12-09 14:50:14

标签: git

我在git中有一个远程存储库。在其中,我有许多分支,其中包含多个提交。

是否可以打印遥控器所有提交的历史记录?所以我可以看到所有分支的提交?

1 个答案:

答案 0 :(得分:0)

是的,你可以。

// Updates the cache of remote repositories
> git fetch

// Logs your remote branches' commits
> git log --all --oneline <origin/yourbranch>