mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-15 22:12:08 +02:00
19 lines
318 B
Bash
Executable file
19 lines
318 B
Bash
Executable file
#!/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
|