On Jan 19, 8:27 am, Macsig <[email protected]> wrote: > Hello all, > is there a way to see all the changes made between 2 non-consecutive > commits?
git show > Executing git log -p I can see the changes between the last 2 commits > but I need to see the changes made between the last commit and an > older one (I can refer to it either by hash or date). git log -p -1 -- Jeenu -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
