DEV Community

Christopher Nilsson
Christopher Nilsson

Posted on

New git-version released! 🎉

Git 2.29 is released: https://github.blog/2020-10-19-git-2-29-released/

One thing that I learned reading through the release was that git has shortlog command. It is similar to git log, but will group the commits to authors.

Example:

$> git shortlog
Aaron Lipman (12):
      t6030: modernize "git bisect run" tests
      rev-list: allow bisect and first-parent flags
      cmd_bisect__helper: defer parsing no-checkout flag
      [...]

Adrian Moennich (1):
      ci: fix inconsistent indentation

Alban Gruin (1):
      t6300: fix issues related to %(contents:size)

[...]
Enter fullscreen mode Exit fullscreen mode

Upgrading git on mac

https://ajahne.github.io/blog/tools/2018/06/11/how-to-upgrade-git-mac.html

Top comments (0)