We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362590b commit 90e3480Copy full SHA for 90e3480
test/UnitTest/SourceControl/Git/Pull.cls
@@ -47,6 +47,8 @@ Method TestPull()
47
do ..WriteFile(remoteDir_"/cls/TestGit/SampleClass1.cls","Class TestGit.SampleClass1 {}")
48
do ..WriteFile(remoteDir_"/cls/TestGit/SampleClass2.cls","Class TestGit.SampleClass2 {}")
49
do $zf(-100,"/SHELL","git","init",remoteDir)
50
+ do $zf(-100,"/SHELL","git", "-C", remoteDir, "config", "user.email", "unittest@example.com")
51
+ do $zf(-100,"/SHELL","git", "-C", remoteDir, "config", "user.name", "Unit Test")
52
do $zf(-100,"/SHELL","git", "-C", remoteDir, "add", ".")
53
do $zf(-100,"/SHELL","git", "-C", remoteDir, "commit", "-m", "initial commit in remote for unit test")
54
// initialize local repo, cloning remote.
0 commit comments