mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-14 17:46:26 -04:00
17 lines
229 B
Bash
17 lines
229 B
Bash
#!/bin/sh
|
|
|
|
cd $1
|
|
|
|
git init
|
|
|
|
git config user.email "CI@example.com"
|
|
git config user.name "CI"
|
|
|
|
echo "line 1" > myfile1
|
|
git add .
|
|
git commit -am "myfile1"
|
|
|
|
echo "line 2" >> myfile1
|
|
echo "line 3" >> myfile1
|
|
echo "line 4" >> myfile1
|