mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-10 11:10:18 +02:00
18 lines
186 B
Bash
18 lines
186 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
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
|