Last active
March 20, 2019 18:08
-
-
Save evansde77/9b24b87f07f53dfcc69fedbdd1dc970a to your computer and use it in GitHub Desktop.
Revisions
-
evansde77 revised this gist
Mar 20, 2019 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,6 @@ function parse_git_branch () { ref=$(git symbolic-ref HEAD 2> /dev/null) || return; BRANCH="("${ref#refs/heads/}")"; echo "${BRANCH}" } -
evansde77 created this gist
Jan 25, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ function parse_git_branch () { ref=$(git symbolic-ref HEAD 2> /dev/null) || return; set_terminal_tab_reponame > /dev/null 2>&1; BRANCH="("${ref#refs/heads/}")"; echo "${BRANCH}" } export PS1="[\t \W] \$(parse_git_branch) "