Skip to content

Instantly share code, notes, and snippets.

@evansde77
Last active March 20, 2019 18:08
Show Gist options
  • Save evansde77/9b24b87f07f53dfcc69fedbdd1dc970a to your computer and use it in GitHub Desktop.
Save evansde77/9b24b87f07f53dfcc69fedbdd1dc970a to your computer and use it in GitHub Desktop.

Revisions

  1. evansde77 revised this gist Mar 20, 2019. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion git_branch_prompt.sh
    Original 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;
    set_terminal_tab_reponame > /dev/null 2>&1;
    BRANCH="("${ref#refs/heads/}")";
    echo "${BRANCH}"
    }
  2. evansde77 created this gist Jan 25, 2017.
    9 changes: 9 additions & 0 deletions git_branch_prompt.sh
    Original 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) "