Как посмотреть список коммитов git
Ответы
Ivan Mamtsev
06 июля 2022
Список коммитов в git можно посмотреть с помощью git log
git log
# 50550c7 (HEAD -> master, origin/master) fix(github): deprecate the `git.io` command (#10896)
# 055c3b6 chore(kube-ps1): update to most recent version (#10980)
# d41ca84 fix(docker): rename `dip` alias to `dipu` to avoid naming conflict (#10957)
# 6622210 fix(oc): fix completion for oc 4.9 and 4.10 (#10973)
# 18e7e5d fix(updater): use `curl --connect-timeout` in new update check
# e9e8c6b (grafted) feat(git): add `gupom` and `gupomi` aliases (#10261)
# еще можно добавить полезные опции
git log --oneline --decorate
git log --stat
git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --stat
0
0