summaryrefslogtreecommitdiffstats
path: root/test/case_insensitive_checkouts.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/case_insensitive_checkouts.sh')
-rwxr-xr-xtest/case_insensitive_checkouts.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/case_insensitive_checkouts.sh b/test/case_insensitive_checkouts.sh
deleted file mode 100755
index d797a4181..000000000
--- a/test/case_insensitive_checkouts.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="case_insensitive_checkouts"
-
-rm -rf ${reponame}
-mkdir ${reponame}
-cd ${reponame}
-
-git init
-
-touch foo
-git add foo
-git commit -m "init"
-git branch -a
-git branch test
-git branch TEST
-git checkout TEST
-git checkout TeST
-git checkout TesT
-git checkout TEsT
-git branch -a \ No newline at end of file