We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9b8770 commit 47862bbCopy full SHA for 47862bb
cls/_zpkg/isc/sc/git/Socket.cls
@@ -16,7 +16,7 @@ ClassMethod Run()
16
Write !,"Current branch: ",branchName
17
Do ##class(SourceControl.Git.Utils).RunGitWithArgs(.errStream, .outStream, "fetch")
18
Kill errStream, outStream
19
- Do ##class(SourceControl.Git.Utils).RunGitWithArgs(.errStream, .outStream, "log", "HEAD..origin", "--name-status")
+ Do ##class(SourceControl.Git.Utils).RunGitWithArgs(.errStream, .outStream, "log", "HEAD..origin/"_branchName, "--name-status")
20
Do ##class(SourceControl.Git.Utils).PrintStreams(errStream, outStream)
21
If (outStream.Size = 0) && (errStream.Size = 0) {
22
Write !,"Already up to date."
0 commit comments