How to add author name to a custom git alias?
up vote
1
down vote
favorite
I have configured custom git alias that I use very frequently to see the complete graph and commit summary.
[alias]
graph = log --oneline --all --decorate --graph
One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration
git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"
This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?
git git-alias
add a comment |
up vote
1
down vote
favorite
I have configured custom git alias that I use very frequently to see the complete graph and commit summary.
[alias]
graph = log --oneline --all --decorate --graph
One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration
git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"
This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?
git git-alias
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have configured custom git alias that I use very frequently to see the complete graph and commit summary.
[alias]
graph = log --oneline --all --decorate --graph
One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration
git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"
This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?
git git-alias
I have configured custom git alias that I use very frequently to see the complete graph and commit summary.
[alias]
graph = log --oneline --all --decorate --graph
One thing I would like to add to this alias is the author name. I am trying to add it using the following format option configuration
git log --oneline --all --decorate --graph --format=format:"%h%x09%d%x09%an%x09%s"
This command seems to work but I do not get the nice color coding for commit hash and branch names. Can anyone please guide me as to how can I retain the color highlight for branch names and commit hashes?
git git-alias
git git-alias
edited Nov 11 at 17:19
jubobs
32.5k17100124
32.5k17100124
asked Nov 11 at 16:47
Afraz Ali
1,11521528
1,11521528
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Just add the color code %C(auto)
in front of your format string :
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"
However, the author name is not colored by default, so you'll need a specific color code in front of it, like
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"
Using--format
supercedes--oneline
so better just delete that option.
– A.H.
Nov 11 at 20:01
@A.H. Fair enough, shorter and clearer. Edited.
– RomainValeri
Nov 11 at 22:56
Perfect!! Thank you so much!
– Afraz Ali
Nov 15 at 11:49
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Just add the color code %C(auto)
in front of your format string :
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"
However, the author name is not colored by default, so you'll need a specific color code in front of it, like
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"
Using--format
supercedes--oneline
so better just delete that option.
– A.H.
Nov 11 at 20:01
@A.H. Fair enough, shorter and clearer. Edited.
– RomainValeri
Nov 11 at 22:56
Perfect!! Thank you so much!
– Afraz Ali
Nov 15 at 11:49
add a comment |
up vote
2
down vote
accepted
Just add the color code %C(auto)
in front of your format string :
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"
However, the author name is not colored by default, so you'll need a specific color code in front of it, like
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"
Using--format
supercedes--oneline
so better just delete that option.
– A.H.
Nov 11 at 20:01
@A.H. Fair enough, shorter and clearer. Edited.
– RomainValeri
Nov 11 at 22:56
Perfect!! Thank you so much!
– Afraz Ali
Nov 15 at 11:49
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Just add the color code %C(auto)
in front of your format string :
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"
However, the author name is not colored by default, so you'll need a specific color code in front of it, like
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"
Just add the color code %C(auto)
in front of your format string :
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%an%x09%s"
However, the author name is not colored by default, so you'll need a specific color code in front of it, like
git log --all --decorate --graph --format=format:"%C(auto)%h%x09%d%x09%C(blue)%an%C(reset)%x09%s"
edited Nov 11 at 22:56
answered Nov 11 at 17:09
RomainValeri
1,35811124
1,35811124
Using--format
supercedes--oneline
so better just delete that option.
– A.H.
Nov 11 at 20:01
@A.H. Fair enough, shorter and clearer. Edited.
– RomainValeri
Nov 11 at 22:56
Perfect!! Thank you so much!
– Afraz Ali
Nov 15 at 11:49
add a comment |
Using--format
supercedes--oneline
so better just delete that option.
– A.H.
Nov 11 at 20:01
@A.H. Fair enough, shorter and clearer. Edited.
– RomainValeri
Nov 11 at 22:56
Perfect!! Thank you so much!
– Afraz Ali
Nov 15 at 11:49
Using
--format
supercedes --oneline
so better just delete that option.– A.H.
Nov 11 at 20:01
Using
--format
supercedes --oneline
so better just delete that option.– A.H.
Nov 11 at 20:01
@A.H. Fair enough, shorter and clearer. Edited.
– RomainValeri
Nov 11 at 22:56
@A.H. Fair enough, shorter and clearer. Edited.
– RomainValeri
Nov 11 at 22:56
Perfect!! Thank you so much!
– Afraz Ali
Nov 15 at 11:49
Perfect!! Thank you so much!
– Afraz Ali
Nov 15 at 11:49
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250943%2fhow-to-add-author-name-to-a-custom-git-alias%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown