0

目前要审查在分支上所做的提交,我执行以下操作:

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?

4

1 回答 1

1

我认为你想要的实际上可以直接从git log

    git log -p --reverse [hash from above command]..my-branch
于 2014-01-30T14:14:59.020 回答