Ich git log
mache gerne mit :
git log --graph --oneline --branches
(auch mit --all, um auch entfernte Zweige anzuzeigen)
Funktioniert mit aktuellen Git-Versionen: eingeführt seit 1.6.3 ( Do, 7. Mai 2009 )
Die --pretty=<style>
Option " " für die Protokollbefehlsfamilie kann jetzt als " --format=<style>
" geschrieben werden.
Darüber hinaus --format=%formatstring
ist eine Abkürzung für --pretty=tformat:%formatstring
.
" --oneline
" ist ein Synonym für " --pretty=oneline --abbrev-commit
".
PS D:\git\tests\finalRepo> git log --graph --oneline --branches --all
* 4919b68 a second bug10 fix
* 3469e13 a first bug10 fix
* dbcc7aa a first legacy evolution
| * 55aac85 another main evol
| | * 47e6ee1 a second bug10 fix
| | * 8183707 a first bug10 fix
| |/
| * e727105 a second evol for 2.0
| * 473d44e a main evol
|/
* b68c1f5 first evol, for making 1.0
Sie können auch die Spanne der Protokollanzeige (Anzahl der Commits) begrenzen:
PS D:\git\tests\finalRepo> git log --graph --oneline --branches --all -5
* 4919b68 a second bug10 fix
* 3469e13 a first bug10 fix
* dbcc7aa a first legacy evolution
| * 55aac85 another main evol
| | * 47e6ee1 a second bug10 fix
(nur die letzten 5 Commits anzeigen)
Was mir an der aktuell ausgewählten Lösung nicht gefällt, ist:
git log --graph
Es wurden viel zu viele Informationen angezeigt (wenn ich nur eine kurze Zusammenfassung anzeigen möchte):
PS D:\git\tests\finalRepo> git log --graph
* commit 4919b681db93df82ead7ba6190eca6a49a9d82e7
| Author: VonC <vonc@laposte.net>
| Date: Sat Nov 14 13:42:20 2009 +0100
|
| a second bug10 fix
|
* commit 3469e13f8d0fadeac5fcb6f388aca69497fd08a9
| Author: VonC <vonc@laposte.net>
| Date: Sat Nov 14 13:41:50 2009 +0100
|
| a first bug10 fix
|
gitk
ist großartig, zwingt mich aber, die Shell-Sitzung für ein anderes Fenster zu verlassen, während das schnelle Anzeigen der letzten n Commits oft genug ist.