summaryrefslogtreecommitdiffstats
path: root/test/repos/lots_of_commits.sh
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-02-26 11:23:36 +1100
committerJesse Duffield <jessedduffield@gmail.com>2023-02-26 11:34:18 +1100
commit8b5d59c2380c9d4c78d148d8ee0cecdfa556f1f5 (patch)
tree87642ceeba0771b3080e9428fdf8d8e9648ccc5c /test/repos/lots_of_commits.sh
parentf82f4f6dbcae4c6f46c8c39bbceda526ab92ee11 (diff)
remove legacy integration tests
Diffstat (limited to 'test/repos/lots_of_commits.sh')
-rwxr-xr-xtest/repos/lots_of_commits.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/repos/lots_of_commits.sh b/test/repos/lots_of_commits.sh
deleted file mode 100755
index ad55864c3..000000000
--- a/test/repos/lots_of_commits.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-set -ex; rm -rf repo; mkdir repo; cd repo
-
-git init
-git config user.email "test@example.com"
-git config user.name "Lazygit Tester"
-
-
-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