summaryrefslogtreecommitdiffstats
path: root/test/fixtures/newFile.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/newFile.sh')
-rw-r--r--test/fixtures/newFile.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/fixtures/newFile.sh b/test/fixtures/newFile.sh
new file mode 100644
index 000000000..f8592c33f
--- /dev/null
+++ b/test/fixtures/newFile.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+git init
+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"
+echo test5 > myfile5