Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 5863e37

Browse files
Adding additional comments
1 parent 30e3738 commit 5863e37

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/GitHub.Api/OutputProcessors/StatusOutputProcessor.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ public override void LineReceived(string line)
151151
else if(proc.IsAtWhitespace)
152152
{
153153
//D deploy.cmd
154+
// D deploy.cmd
154155
status = GitFileStatus.Deleted;
155156
staged = !secondPosition;
156157
}
@@ -167,6 +168,7 @@ public override void LineReceived(string line)
167168
else if (proc.Matches('R'))
168169
{
169170
//R README.md -> README2.md
171+
// R README.md -> README2.md
170172
proc.MoveNext();
171173
proc.SkipWhitespace();
172174

@@ -195,6 +197,7 @@ public override void LineReceived(string line)
195197
else if (proc.IsAtWhitespace)
196198
{
197199
//A something added.txt
200+
// A something added.txt
198201
status = GitFileStatus.Added;
199202
staged = !secondPosition;
200203
}

0 commit comments

Comments
 (0)