I have a commit c. I want to get the changeset of that exact commit c + metainformation and no other one. Is there a simpler way than git log -p c^..c to do tha
git log -p c^..c
git log -p c -1 does just that .
git log -p c -1