Skip to content

Commit 860c260

Browse files
committed
style: reexport from git-source-control
1 parent 3ce71a0 commit 860c260

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

cls/SourceControl/Git/File.cls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,4 @@ Storage Default
6969
}
7070

7171
}
72+

cls/SourceControl/Git/PullEventHandler/IncrementalLoad.cls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ Method DeleteFile(item As %String)
5151
}
5252

5353
}
54+

cls/SourceControl/Git/Utils.cls

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,8 @@ ClassMethod Fetch(ByRef diffFiles) As %Status
432432
quit $$$OK
433433
}
434434

435-
ClassMethod GetCurrentBranch() As %String{
435+
ClassMethod GetCurrentBranch() As %String
436+
{
436437
do ##class(SourceControl.Git.Utils).RunGitCommandWithInput("branch",,.errStream,.outStream,"--show-current")
437438
set branchName = outStream.ReadLine(outStream.Size)
438439
quit branchName
@@ -2276,3 +2277,4 @@ ClassMethod BaselineExport(pCommitMessage = "", pPushToRemote = "") As %Status
22762277
}
22772278

22782279
}
2280+

0 commit comments

Comments
 (0)