# Show log of commits: git log # Show only the last 10 commits: git log -n10 # Show commits since 2017-12-18 git log --since=2017-12-18 # Show commits until 2017-12-19 git log --until=2017-12-19 # Show commits only by a certain author git log --author="Akmal Avloni"
# Reports back differences between working directory, staging index, and repository: git status