Skip to content

Commit ba01e48

Browse files
committed
fixed pull bug caused by diff
1 parent 21dad12 commit ba01e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ ClassMethod Pull(remote As %String = "origin", preview As %Boolean = 0) As %Stat
446446
set branchName = outStream.ReadLine(outStream.Size)
447447
write !, "Pulling from branch: ", branchName
448448

449-
set sc = ..RunGitWithArgs(.errStream, .outStream, "pull", remote, branchName)
449+
set sc = ..RunGitWithArgs(.errStream, .outStream, "pull", remote _ "/" _ branchName)
450450

451451
quit sc
452452
}

0 commit comments

Comments
 (0)