Featured
-
No Featured Found!
Tags
Get history of an individual branch in GIT
If you want to get history of your git repository then you can use simply:
git log
This will return you all commits.
If you want to check changes made in a particular commit then you can use:
git show "SHA-1 key"
SHA-1 is you c...