-
Notifications
You must be signed in to change notification settings - Fork 0
GitStatus
Damian edited this page Apr 3, 2020
·
1 revision
The GitStatus
aims to provide a statistical overview of the changes made to your uncommitted branch. This command does not aim to replace the current git status
functionality.
This is useful for when you are dealing with a large number of changes in your branch and you need a statistic counter.
GitStatus
Name Value
---- -----
Branch-Name: MyBranch
Ahead-Count: 0
Ahead: False
Untracked: False
Added-Files: 0
Modified-Files: 1
Deleted: 0
GitStatus completed.
With the standard git status
command, it tells you the file(s) modified, added, etc.
[MyBranch]> git status
On branch MyBranch
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: source/Xeno.SampleProj.Tests/BasicUnitTest.cs
no changes added to commit (use "git add" and/or "git commit -a")
Git Commands
DevOps Helpers