mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
36 lines
464 B
Bash
36 lines
464 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
set -e
|
|
|
|
cd $1
|
|
|
|
git init
|
|
|
|
git config user.email "CI@example.com"
|
|
git config user.name "CI"
|
|
|
|
echo test1 > myfile1
|
|
git add .
|
|
git commit -am "myfile1"
|
|
echo test2 > myfile2
|
|
git add .
|
|
git commit -am "myfile2"
|
|
|
|
cd ..
|
|
git clone --bare ./repo origin
|
|
|
|
cd repo
|
|
|
|
echo test3 > myfile3
|
|
git add .
|
|
git commit -am "myfile3"
|
|
echo test4 > myfile4
|
|
git add .
|
|
git commit -am "myfile4"
|
|
|
|
git remote add origin ../origin
|
|
git fetch origin
|
|
git config push.default current
|