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

16 lines
173 B
Bash
Raw Normal View History

#!/bin/sh
set -e
cd $1
git init
2022-07-05 18:35:15 +10:00
git config user.email "CI@example.com"
git config user.name "CI"
2022-07-05 18:43:44 +10:00
git commit --allow-empty -m "Initial commit"
echo test1 > .gitignore