如何在不获取更改/提交的情况下获取远程日志?
我只想查看日志,如果自上次pull
. 基本上避免必须先stash
或commit
我的更改。
git帮助文件有这个例子,它以倒置的形式给出我想要的结果:
git log master --not --remotes=*/master
Shows all commits that are in local master but not in any remote repository master branches
如何在不获取更改/提交的情况下获取远程日志?
我只想查看日志,如果自上次pull
. 基本上避免必须先stash
或commit
我的更改。
git帮助文件有这个例子,它以倒置的形式给出我想要的结果:
git log master --not --remotes=*/master
Shows all commits that are in local master but not in any remote repository master branches