Get a list of all git commits, including the 'lost' ons
How to get a history of commits?
#show last 2 commits
git log -2
|
How to see last change?
# show diff of last changes
git log -p -2 --color
|
git help log
#show last 2 commits
git log -2
|
# show diff of last changes
git log -p -2 --color
|
git help log