mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-27 00:51:18 +02:00
16 lines
178 B
Bash
16 lines
178 B
Bash
#!/bin/sh
|
|
|
|
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
|