Make Git Bash Awesome Again
Ancient Knowledge
This article is getting old. It was written in the ancient times and the world of software development has changed a lot since then. I'm keeping it here for historical purposes, but I recommend you check out the newer articles on my site.
Add some spice to git bash to help battle the cubicle blues.
Add some sweet ascii art
Edit your ~/.bashrc
file and add the following
cat << EOF
<insert ascii art here>
EOF
Spice up the prompt
This one is a little more tricky, but start by editing the C:\Program Files\Git\etc\profile.d\git-prompt.sh
You will see a line that starts
PS1=
Edit this line to make whatever your heart desires. Here is a fun one that creates the shrug emoji.
PS1='\[\033]0;$TITLEPREFIX:${PWD//[^[:ascii:]]/?}\007\]' # set window title
PS1="$PS1"'\n' # new line
PS1="$PS1"'\[\033[32m\]' # change to green
PS1="$PS1"'\u@\h ' # user@host<space>
PS1="$PS1"'\[\033[35m\]' # change to purple
PS1="$PS1"'¯\(°_o)/¯ ' # shrug
PS1="$PS1"'\[\033[33m\]' # change to brownish yellow
PS1="$PS1"'\w' # current working directory