How do you make git diff
only show the difference between two commits, excluding the other commits in-between?
Question
Answer
you can simply pass the 2 commits to git diff like :
-> git diff 0da94be 59ff30c > my.patch
-> git apply my.patch
2023-04-04
How do you make git diff
only show the difference between two commits, excluding the other commits in-between?
you can simply pass the 2 commits to git diff like :
-> git diff 0da94be 59ff30c > my.patch
-> git apply my.patch