How do I show the SVN revision number in git log?
Posted
by Zain
on Stack Overflow
See other posts from Stack Overflow
or by Zain
Published on 2010-05-20T01:31:11Z
Indexed on
2010/05/20
1:40 UTC
Read the original article
Hit count: 357
I'm customizing my git log to be all in 1 line. Specifically, I added the following alias:
lg = log --graph --pretty=format:'%Cred%h%Creset - %C(yellow)%an%Creset - %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
So, when I run git lg
, I see the following:
* 41a49ad - zain - commit 1 message here (3 hours ago)
* 6087812 - zain - commit 2 message here (5 hours ago)
* 74842dd - zain - commit 3 message here (6 hours ago)
However, I want to add the SVN revision number in there too, so it looks something like:
* 41a49ad - r1593 - zain - commit 1 message here (3 hours ago)
The normal git log
shows you the SVN revision number, so I'm sure this must be possible. How do I do this?
© Stack Overflow or respective owner