1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2026-05-22 10:15:43 +02:00

integration test for multiline commit message

This commit is contained in:
Jesse Duffield
2022-02-23 18:47:51 +11:00
parent bff5351ab3
commit 1a7fe2835c
33 changed files with 71 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/bin/sh
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"
echo test3 > myfile3
git add .
git commit -am "myfile3"
echo test4 > myfile4
git add .
git commit -am "myfile4"
echo test5 > myfile5