3

I have a git bash shell extension defined it shows |master {1} ✓| what does the {1} mean?

|master {1} ✓| → git status
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean

What does the {1} mean in the prompt? I am using bash configured with https://github.com/Bash-it/bash-it

ams
  • 60,316
  • 68
  • 200
  • 288

1 Answers1

4

Judging from the base theme it means you have one stashed set of changes.

See git stash list.

melpomene
  • 84,125
  • 8
  • 85
  • 148