Last active
August 30, 2018 12:27
-
-
Save robsonfaxas/d98e26c8fa799b5f110ed5e90344fc0e to your computer and use it in GitHub Desktop.
#git - 3 - Logs dos commits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Ver histórico de commits | |
git log | |
-- Ver também informações de merge, branches envolvidas, tags geradas | |
git log --decorate | |
-- Lista todos os commits de autores que tenham Rob | |
git log --author="Rob" | |
-- Log curto: quantos commits cada um fez e quais commits | |
git shortlog | |
-- Log curto: quantos commits cada um fez | |
git shortlog -sn | |
-- Graph: forma gráfica de visualizar as branches se unindo e separando | |
git log --graph | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment