summaryrefslogtreecommitdiffstats
path: root/test/fixtures/updatedFile.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/updatedFile.sh')
-rw-r--r--test/fixtures/updatedFile.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/fixtures/updatedFile.sh b/test/fixtures/updatedFile.sh
new file mode 100644
index 000000000..2c42d6282
--- /dev/null
+++ b/test/fixtures/updatedFile.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+git init
+echo test1 > myfile1
+git add .
+git commit -am "myfile1"
+echo firstline > myfile2
+echo secondline >> myfile2
+echo thirdline >> myfile2
+git add .
+git commit -am "myfile2"
+echo firstline2 > myfile2
+echo secondline >> myfile2
+echo thirdline2 >> myfile2
+git commit -am "myfile2 update"
+echo test3 > myfile3
+git add .
+git commit -am "myfile3"