summaryrefslogtreecommitdiffstats
path: root/test/case_insensitive_checkouts.sh
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-12 15:54:59 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-12 15:54:59 +1000
commit98c22a36fdaf8806f8fafe8f1e23e53f8e97658d (patch)
tree4e04dfe9889df3e06ebb43daa2810e557c552821 /test/case_insensitive_checkouts.sh
parent7bfd8155c2482afd3c09ac7991e8f8f7f0d0338b (diff)
rearrange test repo generators
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