Skip to content

Instantly share code, notes, and snippets.

@kungfoo
Forked from henrik/.bashrc
Last active September 25, 2015 02:48

Revisions

  1. kungfoo revised this gist Jan 17, 2013. 1 changed file with 12 additions and 12 deletions.
    24 changes: 12 additions & 12 deletions .bashrc
    Original file line number Diff line number Diff line change
    @@ -1,12 +1,12 @@
    # http://henrik.nyh.se/2008/12/git-dirty-prompt
    # http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/
    # username@Machine ~/dev/dir[master]$ # clean working directory
    # username@Machine ~/dev/dir[master*]$ # dirty working directory

    function parse_git_dirty {
    [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
    }
    function parse_git_branch {
    git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/"
    }
    export PS1='\u@\h \[\033[1;33m\]\w\[\033[0m\]$(parse_git_branch)$ '
    # http://henrik.nyh.se/2008/12/git-dirty-prompt
    # http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/
    # username@Machine ~/dev/dir[master]$ # clean working directory
    # username@Machine ~/dev/dir[master*]$ # dirty working directory

    function parse_git_dirty {
    [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit, working directory clean" ]] && echo "*"
    }
    function parse_git_branch {
    git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/"
    }
    export PS1='\u@\h \[\033[1;33m\]\w\[\033[0m\]$(parse_git_branch)$ '
  2. @henrik henrik revised this gist Dec 3, 2008. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion .bashrc
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@
    # username@Machine ~/dev/dir[master*]$ # dirty working directory

    function parse_git_dirty {
    [[ $(git status | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
    [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
    }
    function parse_git_branch {
    git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/"
  3. @henrik henrik created this gist Dec 3, 2008.
    12 changes: 12 additions & 0 deletions .bashrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    # http://henrik.nyh.se/2008/12/git-dirty-prompt
    # http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/
    # username@Machine ~/dev/dir[master]$ # clean working directory
    # username@Machine ~/dev/dir[master*]$ # dirty working directory

    function parse_git_dirty {
    [[ $(git status | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
    }
    function parse_git_branch {
    git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/"
    }
    export PS1='\u@\h \[\033[1;33m\]\w\[\033[0m\]$(parse_git_branch)$ '