Skip to content

Latest commit

 

History

History
86 lines (54 loc) · 1.82 KB

README.rst

File metadata and controls

86 lines (54 loc) · 1.82 KB

git-prompt - Minimal Git prompt

  • Shows only the essentials to keep noise down to a minimum.
  • Colors for quick assesment of the situation.
  • Very fast: written in Go and compiled to native code. Calls only one external command. (Two if HEAD is detached.)
  • Works with any shell that can call commands in a prompt.

Installing

First compile the program:

$ go build git-prompt.go

Then copy git-prompt to somewhere in your path and add this to the PS1 variable in your .bashrc / .zsh or other config file:

$(git-prompt)

Here's what I use:

PS1='\u@\h:\w $(git-prompt)$ '

Example Output

[master]      # At master branch with clean repository.
[master *]    # Uncommited changes.
[master ↑]    # One or more commits ahead of remote.
[master *?]   # Changes and untracked files.
[master *!↕]  # Unmerged conflict.
[Initial]     # New git repository with no commits yet.

Branch Name

master Branch name. :f9a02c Detached head. (First 6 characters of commit hash.) Initial Initialized repository with nothing commited yet.

Status Flags

*  Repository has uncommited changes.
?  There are untracked files.
!  There are conflicts.
↑  Local repository is ahead of remote by >= 1 commit.
↓  Local repository is behind remote by >= 1 commit.
↕  Local repository has diverged from remote.
   (It's both ahead and behind.)

Colors

Green
Working directory is clean but may be out of sync with remote.
Yellow
There are changed or untracked files.
Red
There are conflicts that need to be resolved.

License

MIT license.

Contact

Ole Martin Bjorndalen - ombdalen@gmail.com