On Thu, Apr 23, 2015 at 08:26:37AM -0500, Bjorn Helgaas wrote: > On Thu, Apr 23, 2015 at 09:55:13AM +0200, Ricardo Ribalda Delgado wrote: > > Hi Bjorn: > > > > On Wed, Apr 22, 2015 at 6:44 PM, Bjorn Helgaas wrote: > > > > > Usual style for referencing a commit is "(see 02bbde7849e6 ('Revert "of: > > > use platform_device_add"'))". > > > > Do you make that reference manually or there is a magic git command > > for printing it in that style? > > I used to do it mostly by hand, but thanks to your prompting, I fiddled > around and came up with this alias: > > gsr is aliased to `git show -s --abbrev-commit --abbrev=12 --pretty=format:"%h (\"%s\")%n"' There's also git log --format=fixes, though that includes the "Fixes: " prefix. That works with git show as well. Thierry