I have just started learning git. I don't understand what these numbers beside master
mean.
Asked
Active
Viewed 610 times
-1

grg
- 5,023
- 3
- 34
- 50

user3423927
- 63
- 9
-
2Without explicitly knowing I would hazard a guess at it showing the current status. My guess would be that you're 2 commits ahead of origin, no modified files, and no commits behind origin (you can be both ahead and behind origin at the same time). Try a `git status` to see if the numbers line up. – Lasse V. Karlsen Mar 04 '17 at 19:56
-
2That seems to be posh-git. You might find the answer in [the documentation](https://github.com/dahlbyk/posh-git#git-status-summary-information). – JJJ Mar 04 '17 at 19:58
-
@JJJ Thank you. That documentation really helps – user3423927 Mar 04 '17 at 20:01
1 Answers
4
I believe you are using posh-git and from documentation, it means:
master
- current branch+2
- 2 files added~0
- Zero files modified-0
- Zero files Removed!
- There are untracked changes in the working tree

Libin Varghese
- 1,506
- 13
- 19