In the mean time, I just want to share about how to view a diff of single commit.
In SVN, this is what I usually do:
svn diff -c ARGI didn't know the equivalent of it in Git and I used to do this, which is a pain:
git diff <commit>^ <commit>That is, until I found out about:
git show <commit>Problem solved.
0 comments:
Post a Comment