Review working history by git

Author: Al-mamun Sarkar Date: 2020-04-12 14:39:32

Review working history by git. The following code shows how to show log of git and difference between two branches

 

Show history of git:

git log

 

Show difference between two branch:

git diff [first-branch]...[second-branch]

 

Show details of a commit:

git show [commit]