1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-28 09:08:41 +02:00

another integration test

This commit is contained in:
Jesse Duffield 2021-04-02 10:59:41 +11:00
parent 44896bcd51
commit b6d0bdfa2d
41 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1 @@
ref: refs/heads/master

View File

@ -0,0 +1 @@
3cbe2a75b31f199c5ac036efcb3b5bdb508ccd05

View File

@ -0,0 +1,10 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[user]
email = CI@example.com
name = CI

View File

@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.

View File

@ -0,0 +1,7 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~
.DS_Store

View File

@ -0,0 +1,6 @@
0000000000000000000000000000000000000000 2dda1e731d2480710985d15f48ef66502bded67e CI <CI@example.com> 1617321379 +1100 commit (initial): first commit
2dda1e731d2480710985d15f48ef66502bded67e 7bd286f21691abfba705b80adafcd2b27652de65 CI <CI@example.com> 1617321379 +1100 commit: blah
7bd286f21691abfba705b80adafcd2b27652de65 7bd286f21691abfba705b80adafcd2b27652de65 CI <CI@example.com> 1617321387 +1100 reset: moving to HEAD
7bd286f21691abfba705b80adafcd2b27652de65 3cbe2a75b31f199c5ac036efcb3b5bdb508ccd05 CI <CI@example.com> 1617321389 +1100 commit: tet
3cbe2a75b31f199c5ac036efcb3b5bdb508ccd05 3cbe2a75b31f199c5ac036efcb3b5bdb508ccd05 CI <CI@example.com> 1617321398 +1100 reset: moving to HEAD
3cbe2a75b31f199c5ac036efcb3b5bdb508ccd05 27d069e22427ab361d59dd841b7874820e35baa4 CI <CI@example.com> 1617321401 +1100 commit: tet

View File

@ -0,0 +1,4 @@
0000000000000000000000000000000000000000 2dda1e731d2480710985d15f48ef66502bded67e CI <CI@example.com> 1617321379 +1100 commit (initial): first commit
2dda1e731d2480710985d15f48ef66502bded67e 7bd286f21691abfba705b80adafcd2b27652de65 CI <CI@example.com> 1617321379 +1100 commit: blah
7bd286f21691abfba705b80adafcd2b27652de65 3cbe2a75b31f199c5ac036efcb3b5bdb508ccd05 CI <CI@example.com> 1617321389 +1100 commit: tet
3cbe2a75b31f199c5ac036efcb3b5bdb508ccd05 27d069e22427ab361d59dd841b7874820e35baa4 CI <CI@example.com> 1617321401 +1100 commit: tet

View File

@ -0,0 +1,2 @@
x�ÎA
Â@ @Q×sŠìI:fÚ¡«#I3(8¶”<¾õn?oñm©õÑ€2Úæ¥PÔB%ó9bR:å!É,•ÕLSrÒÌa•Í_ ¢©wÒ³F*”³±ÆäÅôçgeÌfä ïv_6'¸ŒÓÍ?RקŸl©W D}ìèŒG"Ä°×}ªùŸ<4oá áw:z

View File

@ -0,0 +1,2 @@
xЌО=
1@aлњ"Ѕ ™ьM"ВV{Њ™d‚‚q—Бг»G°эxЕ+[пП©!›У":xЏ™Сqе$™ ЗаЁёVД†VНЎ>©ќ†ј§F®6Еf!f nLh'C•Z©–-Ж`«Д и3ЫРЛЄЇЛz—/хэ%—Іх›†и,ё”хАuи15еП\M™кFЮ9Ћ

View File

@ -0,0 +1,3 @@
x�ÎM
Â0@a×9Eö‚Ìä·¡«c’™P¡1¥DðøænßâåVë«kœñÒOí|
L.ç<"9Jl\ÂR(2`Ñ[—!©ƒNywm˜ %Zj‚ˆ0OžÑ7I ÁƒI,¢(úô­�zYõ}YŸò¥zìrË­>4ŒÖ �³¾"¨QÇT—?¹J;mêK©9R

View File

@ -0,0 +1 @@
27d069e22427ab361d59dd841b7874820e35baa4

View File

@ -0,0 +1 @@
test5

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,21 @@
#!/bin/sh
cd $1
git init
git config user.email "CI@example.com"
git config user.name "CI"
git commit --allow-empty -m "first commit"
mkdir -p one/two/three
echo test1 > one/two/three/file1
echo test2 > one/two/three/file2
echo test3 > one/two/three/file3
echo test4 > one/two/three/file4
echo test5 > one/two/file1
echo test6 > one/two/file2
git add .
git commit -m "blah"

View File

@ -0,0 +1 @@
{ "description": "messing with our patch building flow in both flat and tree view", "speed": 15 }