Last active
March 20, 2019 18:08
-
-
Save evansde77/9b24b87f07f53dfcc69fedbdd1dc970a to your computer and use it in GitHub Desktop.
Example bash command to show current branch in shell prompt that can be added to bashrc/bash_profile
This file contains hidden or 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
function parse_git_branch () | |
{ | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return; | |
BRANCH="("${ref#refs/heads/}")"; | |
echo "${BRANCH}" | |
} | |
export PS1="[\t \W] \$(parse_git_branch) " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment