Created
February 26, 2021 19:28
-
-
Save RahulDas-dev/0ce37c6fa45d711737ffad1643f33a1b to your computer and use it in GitHub Desktop.
git-promt.sh for git bash Terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS1='\[\033]0;$TITLEPREFIX \007\]' # set window title | |
PS1="$PS1"'\n' # new line | |
PS1="$PS1"'\[\033[32m\]' # change to green | |
PS1="$PS1"'\h ' # user@host<space> | |
PS1="$PS1"'\[\033[35m\]' # change to purple | |
PS1="$PS1"'\[\033[33m\]' # change to brownish yellow | |
PS1="$PS1"'\w' # current working directory | |
if test -z "$WINELOADERNOEXEC" | |
then | |
COMPLETION_PATH="${COMPLETION_PATH%/lib/git-core}" | |
COMPLETION_PATH="$COMPLETION_PATH/share/git/completion" | |
if test -f "$COMPLETION_PATH/git-prompt.sh" | |
then | |
. "$COMPLETION_PATH/git-completion.bash" | |
. "$COMPLETION_PATH/git-prompt.sh" | |
PS1="$PS1"'\[\033[36m\]' # change color to cyan | |
PS1="$PS1"'`__git_ps1`' # bash function | |
fi | |
fi | |
PS1="$PS1"' >' # prompt: always > | |
PS1="$PS1"'\[\033[0m\]' # change color |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment