Skip to content

Git Log

Git Log

  • How to see the latest logs of commits with Git Log command:
				
					# git log
# git log -p -2
# git log --stat
# git log --pretty=oneline
# git log --pretty=oneline --graph
# git log --pretty=reference
# git log --graph
# git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
# git log
# git log -p -2
# git log --stat
# git log --pretty=oneline
# git log --pretty=oneline --graph
# git log --pretty=reference
# git log --graph
# git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit

				
			

Leave a Reply

Your email address will not be published. Required fields are marked *