1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-23 21:51:07 +02:00

18 lines
186 B
Bash
Raw Normal View History

2022-01-19 18:32:27 +11:00
#!/bin/sh
2022-01-26 16:46:54 +11:00
set -e
2022-01-19 18:32:27 +11:00
cd $1
git init
git config user.email "CI@example.com"
git config user.name "CI"
for i in {1..20}
do
echo "$i" > file
git add .
git commit -m "commit $i"
done