Git pretty format colors

Git

Git Problem Overview


I'm trying to set up pretty format colors for Git. From what I can tell version 1.6.0 only recognizes red, green and blue.

$ git log --pretty=format:"%Credred%Creset %Cgreengreen%Creset %Cyellowyellow%Creset %Cblueblue%Creset %Cmagentamagenta%Creset %Ccyancyan%Creset %Cwhitewhite%Creset"
red green %Cyellowyellow%Creset blue %Cmagentamagenta %Ccyancyan %Cwhitewhite

In addition none of the colors work with the parenthesized color format.

Is there a way to list the available pretty format colors for Git?

Unfortunately this is on a legacy SCO OpenServer 5.0.7 machine and the last version of Git released by SCO Skunkworks was 1.6.0.3.

Git Solutions


Solution 1 - Git

I do not have an old version of git to verify that the colors other than red, blue and green are supported.

Although, one thing I noticed even with the recent versions of git (like 1.7.10 I used) is that colors other than red, green and blue need to be within parentheses (). For red, green and blue, the parentheses are optional.

So give this a try:

git log --pretty=format:"%Credred%Creset %Cgreengreen%Creset %C(Yellow)yellow%Creset %Cblueblue%Creset %C(magenta)magenta%Creset %C(cyan)cyan%Creset %C(white)white%Creset"

The list of colors I'm aware of at least are:

normal
black
red
green
yellow
blue
magenta
cyan
white

It can be combined with one of these attributes:

bold
dim
ul
blink
reverse
italic
strike
bright  # (Git 2.26, Q1 2020, example: brightred)

If you're trying to change colors using .gitconfig you should be able to specify two colors - foreground and background and you can combine it with an attribute.

Solution 2 - Git

Git 2.3.0 (February 2015) will allow (thanks to Jeff Kink (peff)):


> ### parse_color: support 24-bit RGB values

> Some terminals (like XTerm) allow full 24-bit RGB color specifications using an extension to the regular ANSI color scheme.
Let's allow users to specify hex RGB colors, enabling the all-important feature of hot pink ref decorations: >
> git log --format="%h%C(#ff69b4)%d%C(reset) %s"


  • a better management of color attributes:

> ### parse_color: recognize "no$foo" to clear the $foo attribute

> You can turn on ANSI text attributes like "reverse" by putting "reverse" in your color spec. However, you cannot ask to turn reverse off. > > For common cases, this does not matter. You would turn on "reverse" at the start of a colored section, and then clear all attributes with a "reset". > > However, you may wish to turn on some attributes, then selectively disable others. For example: > > git log --format="%C(bold ul yellow)%h%C(noul) %s" > > underlines just the hash, but without the need to re-specify the rest of the attributes.
> > This can also help third-party programs, like contrib/diff-highlight, that want to turn some attribute on/off without disrupting existing coloring. > > Note that some attribute specifications are probably nonsensical (e.g., "bold nobold"). We do not bother to flag such constructs, and instead let the terminal sort it out.


With Git 2.26 (Q1 2020), the basic 7 colors learned the brighter counterparts (e.g. "brightred").

See commit c444f03, commit 1751b09, commit 4a28eb0 (21 Jan 2020) by Eyal Soha (``).
(Merged by Junio C Hamano -- gitster -- in commit 87f17d7, 25 Feb 2020)

> ## color.c: support bright aixterm colors
> Signed-off-by: Eyal Soha

> These colors are the bright variants of the 3-bit colors.
> > Instead of 30-37 range for the foreground and 40-47 range for the background, they live in 90-97 and 100-107 range, respectively.

The git config documentation now includes:

The basic colors accepted are normal, black, red, green, yellow, blue, magenta, cyan and white.
The first color given is the foreground; the second is the background.

> All the basic colors except normal have a bright variant that can be specified by prefixing the color with bright, like brightred.


With Git 2.35 (Q1 2022), "default" and "reset" colors have been added to our palette.

See commit de65851 (26 Oct 2021), and commit 05f1f41, commit aeefc18 (25 Oct 2021) by Robert Estelle (rwe).
(Merged by Junio C Hamano -- gitster -- in commit 15209c8, 15 Dec 2021)

> ## color: allow colors to be prefixed with "reset"
> Signed-off-by: Robert Estelle

> "reset" was previously treated as a standalone special color name representing \e[m.
> Now, it can apply to other color properties, allowing exact specifications without implicit attribute inheritance.
> > For example, "reset green" now renders \e[;32m, which is interpreted as "reset everything; then set foreground to green".
> This means the background and other attributes are also reset to their defaults.
> > Previously, this was impossible to represent in a single color: "reset" could be specified alone, or a color with attributes, but some thing like clearing a background color were impossible.
> > There is a separate change that introduces the "default" color name to assist with that, but even then, the above could only to be represented by explicitly disabling each of the attributes: > green default no-bold no-dim no-italic no-ul no-blink no-reverse no-strike

config now includes in its man page: > The pseudo-attribute reset resets all colors and attributes before > applying the specified coloring. For example, reset green will result > in a green foreground and default background without any active > attributes.

Solution 3 - Git

Share my git log format:

$ git log --graph --pretty=format:'%C(magenta)%h%Creset -%C(red)%d%Creset %s %C(dim green)(%cr) %C(cyan)<%an>%Creset' --abbrev-commit

You can also add an alias into ~/.gitconfig:

[alias]
    logs  = log --graph --pretty=format:'%C(magenta)%h%Creset -%C(red)%d%Creset %s %C(dim green)(%cr) %C(cyan)<%an>%Creset' --abbrev-commit

then you can use alias as you define in ~/.gitconfig.

$ git logs

Solution 4 - Git

I am using Ubuntu 18.04 and I was able to use Xiaofei HAN's suggestions.

For beginner trying to complete this, I had the best luck by editing the .gitconfig.

nano ~/.gitconfig

paste [alias] block from above under the existing text

CTRL + O (to write out) + CTRL + X (to close nano)

After doing this, to see the pretty colors you can use

git logs

using

'git log' will get you the view without the colors,

same for 'git logs --oneline', except that one will show the flourish on the side

thank you, i hope this helps someone

Solution 5 - Git

Here are two aliases that I wrote once I understood the syntax of using custom hexadecimal color values as shown in @VonC 's answer.

There are four versions, the only difference is the --graph directive and the 'f' versions will also show you files that were added, deleted or modified:

[alias]
	lg = log --graph --pretty=format:"%C(#cd9a00)%h\\%C(#0080ff)\\ <%an>\\ %C(#17b062)(%cr)\\ %d\\%C(#c0d6de)%s"	
	l1 = log --pretty=format:"%C(#cd9a00)%h\\%C(#0080ff)\\ <%an>\\ %C(#17b062)(%cr)\\ %d\\%C(#c0d6de)%s"	
	lgf = log --name-status --graph --pretty=format:"%C(#cd9a00)%h\\%C(#0080ff)\\ <%an>\\ %C(#17b062)(%cr)\\ %d\\%C(#c0d6de)%s"	
	l1f = log --name-status --pretty=format:"%C(#cd9a00)%h\\%C(#0080ff)\\ <%an>\\ %C(#17b062)(%cr)\\ %d\\%C(#c0d6de)%s"

I used this site to pick the exact colors I wanted and then copied the hex value from it:

https://www.colorhexa.com/

For Windows, open up your .gitconfig file that resides in your "C:\Users\YourUserName" Folder and add an alias section as depicted above.

Hope you like them.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJames AllmanView Question on Stackoverflow
Solution 1 - GitTuxdudeView Answer on Stackoverflow
Solution 2 - GitVonCView Answer on Stackoverflow
Solution 3 - GitXiaofei HANView Answer on Stackoverflow
Solution 4 - Gitdaniela-idaraView Answer on Stackoverflow
Solution 5 - GitElMatadorView Answer on Stackoverflow