summaryrefslogtreecommitdiffstats
path: root/test/lots_of_commits.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/lots_of_commits.sh')
-rwxr-xr-xtest/lots_of_commits.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/lots_of_commits.sh b/test/lots_of_commits.sh
deleted file mode 100755
index b56c9a6be..000000000
--- a/test/lots_of_commits.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-
-# this script makes a repo with lots of commits
-
-# call this command from the test directory:
-# ./lots_of_commits.sh; cd testrepo; gg; cd ..
-
-# -e means exit if something fails
-# -x means print out simple commands before running them
-set -ex
-
-reponame="lots_of_commits"
-
-rm -rf ${reponame}
-mkdir ${reponame}
-cd ${reponame}
-
-git init
-
-i=2
-end=100
-while [ $i -le $end ]; do
- echo "file${i}" > file${i}
- git add file${i}
- git commit -m file${i}
-
- i=$(($i+1))
-done
-
-echo "unstaged change" > file100