mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04:00
14 lines
124 B
Bash
14 lines
124 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $1
|
|
|
|
git init
|
|
|
|
git config user.email "CI@example.com"
|
|
git config user.name "CI"
|
|
|
|
echo test1 > myfile1
|
|
|