How to compare changesets in Git? -
git makes easy compare differences between commits, using instance git commands diff , difftool. in tortoisegit select 2 commits compare them.
but there way compare changesets? in other words: see differences between diffs of 1 set of commits , diffs of set of commits.
this handy compare (sets of) commits cherry-picked or have been rebased.
perhaps diff <(git show rev1) <(git show rev2)
want?
Comments
Post a Comment