I'm using bash-it with powerline prompt theme. I noticed {1} next to the Git branch name. What does it mean?
bash-it with powerline prompt theme: What's the meaning of {1} next to the git branch name?
237 Views Asked by Kibeom Kim At
1
There are 1 best solutions below
Related Questions in POWERLINE
- powerline status-line on ubuntu server 14.04 (no gui)
- Urxvt - powerline wrong color
- Custom emacs powerline themes
- How to update macOS Python packages
- How to get the current Vi mode in IPython
- patched powerline fonts on gnome-terminal not working (archlinux + GNOME)
- Alacritty font rendering
- How do I remove the exit code part of the powerline prompt
- VSCode Powerline symbols overlap in integrated terminal
- Problem: Shutting down pc resets powerline fonts so they don't appear in VS Code (but they do in Ubuntu terminal)
- Powerline - No such file or directory /scripts/powerline-config
- Heredoc with powerline
- powerline jason messed up after trying to restart using "powerline-daemon --replace"
- tmux powerline symbols not rendering properly despite having proper fonts installed
- Fish theme "bobthefish" not showing special symbols
Related Questions in BASH-IT
- Homesick with bash-it as submodule
- What's the issue in my "adduser" from another file bash script
- Why mkdir error in installing bash-it under Windows7 MSYS
- How can I show colored hostname on the prompt in Powerline-Plain [Bash-it] theme?
- Some bash variables are being overwritten
- switch branch in git by partial name
- RVM not changing ruby version on cd (with bash-it)
- How can I install iterm2 bash-it themes?
- bash-it with powerline prompt theme: What's the meaning of {1} next to the git branch name?
- How to uninstall Bash-it?
- what does {1} mean in |master {1} ✓| with bashit?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

It means you have a
stash, i.e. you've usedgit stashat some point.You can confirm via:
Also,
will give you a dry-run of changes, which can be useful.
I often accumulate stashes over time - I use sublime merge which allows me to directly inspect the contents of the stash, which makes it easy to safely drop them without losing any valuable saved data.
Note: The
{1}is not limited to the Powerline theme and would likely show in most themes with a git_scm segment enabled.Disclaimer: I'm a maintainer for Bash-It and of the Powerline theme specifically.