Answers for "list the commits in git"

21

how to see all commits in git

$ git log --pretty=format:"%h - %an, %ar : %s"
ca82a6d - Scott Chacon, 6 years ago : Change version number
085bb3b - Scott Chacon, 6 years ago : Remove unnecessary test
a11bef0 - Scott Chacon, 6 years ago : Initial commit
Posted by: Guest on July-31-2020
6

git list of local commits

git log origin/master..HEAD
Posted by: Guest on February-18-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language