mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-09 13:47:11 +02:00
31 lines
520 B
Bash
Executable File
31 lines
520 B
Bash
Executable File
#!/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
|