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 characters
| # initialization file (not found) |
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 characters
| function git_num_untracked_files { | |
| expr `git status --porcelain 2>/dev/null| grep "^??" | wc -l` | |
| } | |
| function git_num_staged_new_files { | |
| expr `git status --porcelain 2>/dev/null| grep "^A" | wc -l` | |
| } | |
| function git_num_staged_modified_files { | |
| expr `git status --porcelain 2>/dev/null| grep "^M" | wc -l` | |
| } | |
| function git_num_unstaged_files { |
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 characters
| [alias] | |
| map = log --all --graph --decorate=short --color --format=format:'%C(bold blue)%h%C(reset) %C(bold yellow)(%ar)%C(reset)%C(auto)%d%C(reset)%x20%s%x20' |
OlderNewer