Terminal Note

Color bash configuration

Open ~/.bashrc file, and uncomment ‘force_color_prompt’ label.

1
force_color_prompt=yes

Update bash prompt.

Open ~/.bashrc file, Update variable PS1

1
2
3
4
5
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi

Git branch show configuration

Open ~/.bashrc file and add config below.
Please make sure the unset color_prompt force_color_prompt commands below the script.

1
2
3
4
5
6
7
8
9
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\] $(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt

alias configuration

Add script below to ~/.bashrc

1
alias gs='git status'