Home > front end >  What is " " sign next to branch name indicates in vscode
What is " " sign next to branch name indicates in vscode

Time:04-28

In VS code with my branch name, there is a " " sign what does that mean?

enter image description here

CodePudding user response:

Checking the source code reveals that:

  • * indicates you have unstaged changes (not been added yet)
  • indicates you have staged changes (added, but not commited)
  • ! indicates unmerged conflicts

There can also be Rebasing at the end, when you are in the middle of a rebase.


So, if you see * , then git status should show some staged and some unstaged files.

  • Related