Я зазвичай використовую
git log --graph --full-history --all --pretty=format:"%h%x09%d%x20%s"
З кольорами (якщо ваша оболонка - Bash):
git log --graph --full-history --all --color \
--pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s"
Це надрукує текстове представлення так:
* 040cc7c (HEAD, master) Manual is NOT built by default
* a29ceb7 Removed offensive binary file that was compiled on my machine and was hence incompatible with other machines.
| * 901c7dd (cvc3) cvc3 now configured before building
| * d9e8b5e More sane Yices SMT solver caller
| | * 5b98a10 (nullvars) All uninitialized variables get zero inits
| |/
| * 1cad874 CFLAGS for cvc3 to work successfully
| * 1579581 Merge branch 'llvm-inv' into cvc3
| |\
| | * a9a246b nostaticalias option
| | * 73b91cc Comment about aliases.
| | * 001b20a Prints number of iteration and node.
| |/
|/|
| * 39d2638 Included header files to cvc3 sources
| * 266023b Added cvc3 to blast infrastructure.
| * ac9eb10 Initial sources of cvc3-1.5
|/
* d642f88 Option -aliasstat, by default stats are suppressed
(Ви можете просто скористатися git log --format=oneline
, але він прив’яже повідомлення до фіксації цифр, що виглядає менш симпатичним IMHO).
Щоб зробити ярлик для цієї команди, ви можете відредагувати свій ~/.gitconfig
файл:
[alias]
gr = log --graph --full-history --all --color --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x20%x1b[33m(%an)%x1b[0m"
Однак, як зазначає Содель Вокофер в коментарях, таку довгу команду форматування важко запам'ятати. Зазвичай це не проблема, оскільки ви можете помістити його у ~/.gitconfig
файл. Однак якщо вам іноді доводиться входити на віддалену машину, де ви не можете змінювати конфігураційний файл, ви можете скористатися більш простою, але швидшою для введення версією:
git log --graph --oneline