On Mon, 26 Jun 2023 20:06:48 +0000 Dexuan Cui decui@microsoft.com wrote:
From: Simon Horman Sent: Monday, June 26, 2023 6:05 AM
... Fixes: ca9c54d2d6a5ab2430c4eda364c77125d62e5e0f (net: mana: Add a driver for Microsoft Azure Network Adapter)
nit: A correct format of this fixes tag is:
In particular:
- All on lone line
- Description in double quotes.
Fixes: ca9c54d2d6a5 ("net: mana: Add a driver for Microsoft Azure Network Adapter (MANA)")
Hi Souradeep, FYI I often refer to: https://marc.info/?l=linux-pci&m=150905742808166&w=2
The link mentions: alias gsr='git --no-pager show -s --abbrev-commit --abbrev=12 --pretty=format:"%h ("%s")%n"'
"gsr ca9c54d2d6a5ab2430c4eda364c77125d62e5e0f" produces: ca9c54d2d6a5 ("net: mana: Add a driver for Microsoft Azure Network Adapter (MANA)")
You can do same thing without shell alias by using git-config
[alias] fixes = log -1 --format=fixes gsr = log -1 --format=gsr
[pretty] fixes = Fixes: %h ("%s") gsr = %h ("%s")
Then: $ git gsr 1919b39fc6eabb9a6f9a51706ff6d03865f5df29 1919b39fc6ea ("net: mana: Fix perf regression: remove rx_cqes, tx_cqes counters")