summaryrefslogtreecommitdiffstats
path: root/test/integration/customCommandsComplex/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/customCommandsComplex/setup.sh')
-rw-r--r--test/integration/customCommandsComplex/setup.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/integration/customCommandsComplex/setup.sh b/test/integration/customCommandsComplex/setup.sh
new file mode 100644
index 000000000..a37a2823b
--- /dev/null
+++ b/test/integration/customCommandsComplex/setup.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+cd $1
+
+git init
+
+git config user.email "CI@example.com"
+git config user.name "CI"
+
+echo test1 > myfile1
+git add .
+git commit -am "myfile1"
+echo test2 > myfile2
+git add .
+git commit -am "myfile2"
+echo test3 > myfile3
+git add .
+git commit -am "myfile3"
+echo test4 > myfile4
+git add .
+git commit -am "myfile4"