Created
July 20, 2021 18:01
-
-
Save solomonrothman/eae68f64f645b13bed72d62fb8a3ca58 to your computer and use it in GitHub Desktop.
What git symbols mean in powerlevel10k theme
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
# Reference from https://gitee.com/kongren/powerlevel10k#what-do-different-symbols-in-git-status-mean | |
Symbol Meaning Source | |
feature current branch; replaced with #tag or @commit if not on a branch git status | |
master remote tracking branch; only shown if different from local branch git rev-parse --abbrev-ref --symbolic-full-name @{u} | |
⇣42 this many commits behind the remote git status | |
⇡42 this many commits ahead of the remote git status | |
*42 this many stashes git stash list | |
merge repository state git status | |
~42 this many merge conflicts git status | |
+42 this many staged changes git status | |
!42 this many unstaged changes git status | |
?42 this many untracked files git status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment