Skip to content

Commit

Permalink
new symbol for unmerged files
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierverdier committed Jun 2, 2010
1 parent 4a28afe commit faf8702
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -33,7 +33,7 @@ The symbols are as follows:
* Status Symbols
:⚡: repository clean
:♦n: there are ``n`` staged files
:n: there are ``n`` unmerged files
:n: there are ``n`` unmerged files
:‣n: there are ``n`` changed but *unstaged* files
:…: there are some untracked files

Expand Down
2 changes: 1 addition & 1 deletion gitstatus.py
Expand Up @@ -2,7 +2,7 @@
# -*- coding: UTF-8 -*-

# change those symbols to whatever you prefer
symbols = {'ahead of': '↑', 'behind': '↓', 'staged':'♦', 'changed':'‣', 'untracked':'…', 'clean':'⚡', 'unmerged':'', 'sha1':':'}
symbols = {'ahead of': '↑', 'behind': '↓', 'staged':'♦', 'changed':'‣', 'untracked':'…', 'clean':'⚡', 'unmerged':'', 'sha1':':'}

from subprocess import Popen, PIPE

Expand Down

0 comments on commit faf8702

Please sign in to comment.