Turn color on for git status

The following command will update the Git’s global configuration to set the color.ui to true. $ git config --global color.ui true Ref: https://ask.fedoraproject.org/question/10434

September 26, 2013 · 1 min · 23 words · kenno

Beautify gitk font on Debian/Ubuntu

Install tk8.5, if not yet installed: # apt-get install tk8.5 # update-alternatives --config wish Selection Alternative ----------------------------------------------- 1 /usr/bin/wish8.4 *+ 2 /usr/bin/wish-default 3 /usr/bin/wish8.5</pre> There are 3 alternatives which provide wish. Type in the number that corresponds to tk8.5 (in my case was 3) then hit enter. Change fonts in ~/.gitk to DejaVu Sans Mono. set mainfont {{DejaVu Sans Mono} 9} set textfont {{DejaVu Sans Mono} 9} set uifont {{DejaVu Sans Mono} 9 bold}

September 4, 2011 · 1 min · 74 words · kenno