目前要审查在分支上所做的提交,我执行以下操作:
git merge-base HEAD master # to get the hash of when the branch came off parent
git show [hash from above command]..my-branch
但是,这会按时间倒序列出提交。我想回顾从第一个开始到最近的提交。要按此顺序获取提交哈希,可以使用
git rev-list [hash from above command]..my-branch
但谁能告诉我如何将它传递给显示或 difftool?