标签: git
我在git中有一个远程存储库。在其中,我有许多分支,其中包含多个提交。
是否可以打印遥控器所有提交的历史记录?所以我可以看到所有分支的提交?
答案 0 :(得分:0)
是的,你可以。
// Updates the cache of remote repositories > git fetch // Logs your remote branches' commits > git log --all --oneline <origin/yourbranch>