# HG changeset patch # User Oleksandr Gavenko # Date 1492945535 -10800 # Node ID 09e2e50d02aa09d11c1d81d0278584773d8a8012 # Parent 754abf10c819d7d5854fadd9aa6a0d1a34138907 View git commits. diff -r 754abf10c819 -r 09e2e50d02aa git.rst --- a/git.rst Sat Apr 15 09:41:57 2017 +0300 +++ b/git.rst Sun Apr 23 14:05:35 2017 +0300 @@ -197,6 +197,23 @@ $ git ls-remote $ git ls-remote $upstream +View git commits +================ + +Review specific commit with:: + + $ git show $REV + $ git diff $REV^ $REV + +Review difference between commits:: + + $ git $REV1 $REV2 + +Review history with diffs:: + + $ git log -p + $ git log -p $FROM_REV + View unpublished git commits / analog of git 'hg outgoing' ==========================================================