1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-02 22:25:47 +02:00

update snapshots to include tags comparison

This commit is contained in:
Jesse Duffield 2021-04-06 11:17:32 +10:00
parent 4441cf1045
commit ace4350319
321 changed files with 465 additions and 411 deletions

View File

@ -60,7 +60,7 @@ func RunTests(
testPath := filepath.Join(testDir, test.Name)
actualDir := filepath.Join(testPath, "actual")
expectedDir := filepath.Join(testPath, "expected")
logf("testPath: %s, actualDir: %s, expectedDir: %s", testPath, actualDir, expectedDir)
logf("path: %s", testPath)
// three retries at normal speed for the sake of flakey tests
speeds = append(speeds, 1, 1, 1)
@ -91,6 +91,13 @@ func RunTests(
if err != nil {
return err
}
err = os.Rename(
filepath.Join(expectedDir, ".git"),
filepath.Join(expectedDir, ".git_keep"),
)
if err != nil {
return err
}
}
actual, expected, err := generateSnapshots(actualDir, expectedDir)
@ -262,22 +269,19 @@ func generateSnapshot(dir string) (string, error) {
snapshot := ""
statusCmd := fmt.Sprintf(`git -C %s status`, dir)
statusCmdOutput, err := osCommand.RunCommandWithOutput(statusCmd)
if err != nil {
return "", err
cmdStrs := []string{
fmt.Sprintf(`git -C %s status`, dir), // file tree
fmt.Sprintf(`git -C %s log --pretty=%%B -p -1`, dir), // log
fmt.Sprintf(`git -C %s tag -n`, dir), // tags
}
snapshot += statusCmdOutput + "\n"
for _, cmdStr := range cmdStrs {
// ignoring error for now. If there's an error it could be that there are no results
output, _ := osCommand.RunCommandWithOutput(cmdStr)
logCmd := fmt.Sprintf(`git -C %s log --pretty=%%B -p -1`, dir)
logCmdOutput, err := osCommand.RunCommandWithOutput(logCmd)
if err != nil {
return "", err
snapshot += output + "\n"
}
snapshot += logCmdOutput + "\n"
err = filepath.Walk(dir, func(path string, f os.FileInfo, err error) error {
if err != nil {
return err

View File

@ -1,6 +1,6 @@
0000000000000000000000000000000000000000 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 commit (initial): initial commit
7877532bb822c0e04f5ecbc78fc414f997ba53cf 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 checkout: moving from master to one
7877532bb822c0e04f5ecbc78fc414f997ba53cf 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 checkout: moving from one to two
7877532bb822c0e04f5ecbc78fc414f997ba53cf 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 checkout: moving from two to three
7877532bb822c0e04f5ecbc78fc414f997ba53cf 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 checkout: moving from three to four
7877532bb822c0e04f5ecbc78fc414f997ba53cf 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582245 +1000 checkout: moving from four to three
0000000000000000000000000000000000000000 f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 commit (initial): initial commit
f753f4dfc98d148a7e685c46c8d148bcac56707d f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 checkout: moving from master to one
f753f4dfc98d148a7e685c46c8d148bcac56707d f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 checkout: moving from one to two
f753f4dfc98d148a7e685c46c8d148bcac56707d f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 checkout: moving from two to three
f753f4dfc98d148a7e685c46c8d148bcac56707d f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 checkout: moving from three to four
f753f4dfc98d148a7e685c46c8d148bcac56707d f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671338 +1000 checkout: moving from four to three

View File

@ -1 +1 @@
0000000000000000000000000000000000000000 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 branch: Created from HEAD
0000000000000000000000000000000000000000 f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 branch: Created from HEAD

View File

@ -1 +1 @@
0000000000000000000000000000000000000000 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 commit (initial): initial commit
0000000000000000000000000000000000000000 f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 commit (initial): initial commit

View File

@ -1 +1 @@
0000000000000000000000000000000000000000 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 branch: Created from HEAD
0000000000000000000000000000000000000000 f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 branch: Created from HEAD

View File

@ -1 +1 @@
0000000000000000000000000000000000000000 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 branch: Created from HEAD
0000000000000000000000000000000000000000 f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 branch: Created from HEAD

View File

@ -1 +1 @@
0000000000000000000000000000000000000000 7877532bb822c0e04f5ecbc78fc414f997ba53cf CI <CI@example.com> 1617582242 +1000 branch: Created from HEAD
0000000000000000000000000000000000000000 f753f4dfc98d148a7e685c46c8d148bcac56707d CI <CI@example.com> 1617671335 +1000 branch: Created from HEAD

View File

@ -1 +1 @@
7877532bb822c0e04f5ecbc78fc414f997ba53cf
f753f4dfc98d148a7e685c46c8d148bcac56707d

View File

@ -1 +1 @@
7877532bb822c0e04f5ecbc78fc414f997ba53cf
f753f4dfc98d148a7e685c46c8d148bcac56707d

View File

@ -1 +1 @@
7877532bb822c0e04f5ecbc78fc414f997ba53cf
f753f4dfc98d148a7e685c46c8d148bcac56707d

View File

@ -1 +1 @@
7877532bb822c0e04f5ecbc78fc414f997ba53cf
f753f4dfc98d148a7e685c46c8d148bcac56707d

View File

@ -1 +1 @@
7877532bb822c0e04f5ecbc78fc414f997ba53cf
f753f4dfc98d148a7e685c46c8d148bcac56707d

View File

@ -1,5 +1,5 @@
0000000000000000000000000000000000000000 47912ceb0ffa9b205290e75103d9dd6b1878e87b CI <CI@example.com> 1617580570 +1000 commit (initial): myfile1
47912ceb0ffa9b205290e75103d9dd6b1878e87b 6bd1486e023f9853f9e6f611cac5ccbc8960ce57 CI <CI@example.com> 1617580570 +1000 commit: myfile2
6bd1486e023f9853f9e6f611cac5ccbc8960ce57 980224a1dd75d91fdcab11edc8d25c3ff8f751ba CI <CI@example.com> 1617580570 +1000 commit: myfile3
980224a1dd75d91fdcab11edc8d25c3ff8f751ba f4e779d1bd2ad074259ad763210f5b911337054f CI <CI@example.com> 1617580570 +1000 commit: myfile4
f4e779d1bd2ad074259ad763210f5b911337054f d0cab53ed70fc66096575c2ccd7ef150b4b470e8 CI <CI@example.com> 1617580572 +1000 commit: commit
0000000000000000000000000000000000000000 3df3d8761bc0f0828596b11845aeac175b7b7393 CI <CI@example.com> 1617671339 +1000 commit (initial): myfile1
3df3d8761bc0f0828596b11845aeac175b7b7393 a7d53cc21fd53100f955377be379423b0e386274 CI <CI@example.com> 1617671339 +1000 commit: myfile2
a7d53cc21fd53100f955377be379423b0e386274 4ba4f1ed711a9081fab21bc222469aa5176a01f8 CI <CI@example.com> 1617671339 +1000 commit: myfile3
4ba4f1ed711a9081fab21bc222469aa5176a01f8 1440bc6cc888a09dca2329d1060eec6de78d9d21 CI <CI@example.com> 1617671339 +1000 commit: myfile4
1440bc6cc888a09dca2329d1060eec6de78d9d21 e7560e2cd4783a261ad32496cefed2d9f69a46e7 CI <CI@example.com> 1617671342 +1000 commit: commit

View File

@ -1,5 +1,5 @@
0000000000000000000000000000000000000000 47912ceb0ffa9b205290e75103d9dd6b1878e87b CI <CI@example.com> 1617580570 +1000 commit (initial): myfile1
47912ceb0ffa9b205290e75103d9dd6b1878e87b 6bd1486e023f9853f9e6f611cac5ccbc8960ce57 CI <CI@example.com> 1617580570 +1000 commit: myfile2
6bd1486e023f9853f9e6f611cac5ccbc8960ce57 980224a1dd75d91fdcab11edc8d25c3ff8f751ba CI <CI@example.com> 1617580570 +1000 commit: myfile3
980224a1dd75d91fdcab11edc8d25c3ff8f751ba f4e779d1bd2ad074259ad763210f5b911337054f CI <CI@example.com> 1617580570 +1000 commit: myfile4
f4e779d1bd2ad074259ad763210f5b911337054f d0cab53ed70fc66096575c2ccd7ef150b4b470e8 CI <CI@example.com> 1617580572 +1000 commit: commit
0000000000000000000000000000000000000000 3df3d8761bc0f0828596b11845aeac175b7b7393 CI <CI@example.com> 1617671339 +1000 commit (initial): myfile1
3df3d8761bc0f0828596b11845aeac175b7b7393 a7d53cc21fd53100f955377be379423b0e386274 CI <CI@example.com> 1617671339 +1000 commit: myfile2
a7d53cc21fd53100f955377be379423b0e386274 4ba4f1ed711a9081fab21bc222469aa5176a01f8 CI <CI@example.com> 1617671339 +1000 commit: myfile3
4ba4f1ed711a9081fab21bc222469aa5176a01f8 1440bc6cc888a09dca2329d1060eec6de78d9d21 CI <CI@example.com> 1617671339 +1000 commit: myfile4
1440bc6cc888a09dca2329d1060eec6de78d9d21 e7560e2cd4783a261ad32496cefed2d9f69a46e7 CI <CI@example.com> 1617671342 +1000 commit: commit

View File

@ -0,0 +1,3 @@
x�ÍA
Â0@Q×9Åì™iÆI
"BW=FšL°Ð!R"èííÜ~üÜÌÖÄrê»* J®˜d £Æ¬¥DÕÀ û"\S¾.½û³í0Íp›æ‡~’½6½äfw ¡ �¼áLˆèŽzLºþÉ�}ëº)¹2r,Ï

View File

@ -1,2 +0,0 @@
x�ŽK
Â0@]çÙ 2“dò�"BW=Æ4™`¡±¥DÐÛÛ#¸}<x/o­-]cr—~ˆhS=6‚³±¢›Ñ{ŠlÉKðÆYÊL Õ·¼ºNŒqŒ¥* kÉ<#JɱʶÖXáÌŠßý¹zœô0NùpÛW¹å­Ý5žIŠ@ô@�ôœêò§®Ú·.«8õ#Ó9}

View File

@ -1 +1 @@
d0cab53ed70fc66096575c2ccd7ef150b4b470e8
e7560e2cd4783a261ad32496cefed2d9f69a46e7

View File

@ -1 +1 @@
3633f8c997d88e0c59202f498c8344da9da3aaf4
11bdfc142c42c6ffaa904890ab61ec76262ec9ca

View File

@ -1,8 +1,8 @@
0000000000000000000000000000000000000000 459fa5065afddb89a3dccddef39b17b5fd74d041 CI <CI@example.com> 1617582376 +1000 commit (initial): one
459fa5065afddb89a3dccddef39b17b5fd74d041 0776b49486a00aecd966e4d72e14edea5fad91a8 CI <CI@example.com> 1617582376 +1000 commit: both-deleted.txt renamed in added-them-changed-us.txt
0776b49486a00aecd966e4d72e14edea5fad91a8 837fbbc4ee6892b828a4a94be22c39814146aafb CI <CI@example.com> 1617582376 +1000 commit: two
837fbbc4ee6892b828a4a94be22c39814146aafb 459fa5065afddb89a3dccddef39b17b5fd74d041 CI <CI@example.com> 1617582376 +1000 checkout: moving from conflict to conflict_second
459fa5065afddb89a3dccddef39b17b5fd74d041 3247afc767cff1c98fe5277005f6653547b20fa4 CI <CI@example.com> 1617582377 +1000 commit: both-deleted.txt renamed in changed-them-added-us.txt
3247afc767cff1c98fe5277005f6653547b20fa4 3633f8c997d88e0c59202f498c8344da9da3aaf4 CI <CI@example.com> 1617582377 +1000 commit: three
3633f8c997d88e0c59202f498c8344da9da3aaf4 3633f8c997d88e0c59202f498c8344da9da3aaf4 CI <CI@example.com> 1617582377 +1000 reset: moving to conflict_second
3633f8c997d88e0c59202f498c8344da9da3aaf4 39d62c8a07e5103fef16c32373738ce92c4549b7 CI <CI@example.com> 1617582397 +1000 commit (merge): Merge branch 'conflict' into conflict_second
0000000000000000000000000000000000000000 98e834e9cdae1191de7fafb2b6f334bddd0793e8 CI <CI@example.com> 1617671344 +1000 commit (initial): one
98e834e9cdae1191de7fafb2b6f334bddd0793e8 9976d7948def8b082e9d20135d6a04624d711752 CI <CI@example.com> 1617671344 +1000 commit: both-deleted.txt renamed in added-them-changed-us.txt
9976d7948def8b082e9d20135d6a04624d711752 8c82faa1358ce6cddba19d59b2924cbcc5ef1c8e CI <CI@example.com> 1617671344 +1000 commit: two
8c82faa1358ce6cddba19d59b2924cbcc5ef1c8e 98e834e9cdae1191de7fafb2b6f334bddd0793e8 CI <CI@example.com> 1617671344 +1000 checkout: moving from conflict to conflict_second
98e834e9cdae1191de7fafb2b6f334bddd0793e8 c91b3b139ea108475c19839fcda3a4e33db4ccc9 CI <CI@example.com> 1617671344 +1000 commit: both-deleted.txt renamed in changed-them-added-us.txt
c91b3b139ea108475c19839fcda3a4e33db4ccc9 11bdfc142c42c6ffaa904890ab61ec76262ec9ca CI <CI@example.com> 1617671344 +1000 commit: three
11bdfc142c42c6ffaa904890ab61ec76262ec9ca 11bdfc142c42c6ffaa904890ab61ec76262ec9ca CI <CI@example.com> 1617671344 +1000 reset: moving to conflict_second
11bdfc142c42c6ffaa904890ab61ec76262ec9ca 854f08fa802293e0679d07771547fe9fe5d159e8 CI <CI@example.com> 1617671365 +1000 commit (merge): Merge branch 'conflict' into conflict_second

View File

@ -1,3 +1,3 @@
0000000000000000000000000000000000000000 459fa5065afddb89a3dccddef39b17b5fd74d041 CI <CI@example.com> 1617582376 +1000 commit (initial): one
459fa5065afddb89a3dccddef39b17b5fd74d041 0776b49486a00aecd966e4d72e14edea5fad91a8 CI <CI@example.com> 1617582376 +1000 commit: both-deleted.txt renamed in added-them-changed-us.txt
0776b49486a00aecd966e4d72e14edea5fad91a8 837fbbc4ee6892b828a4a94be22c39814146aafb CI <CI@example.com> 1617582376 +1000 commit: two
0000000000000000000000000000000000000000 98e834e9cdae1191de7fafb2b6f334bddd0793e8 CI <CI@example.com> 1617671344 +1000 commit (initial): one
98e834e9cdae1191de7fafb2b6f334bddd0793e8 9976d7948def8b082e9d20135d6a04624d711752 CI <CI@example.com> 1617671344 +1000 commit: both-deleted.txt renamed in added-them-changed-us.txt
9976d7948def8b082e9d20135d6a04624d711752 8c82faa1358ce6cddba19d59b2924cbcc5ef1c8e CI <CI@example.com> 1617671344 +1000 commit: two

View File

@ -1,4 +1,4 @@
0000000000000000000000000000000000000000 459fa5065afddb89a3dccddef39b17b5fd74d041 CI <CI@example.com> 1617582376 +1000 branch: Created from conflict
459fa5065afddb89a3dccddef39b17b5fd74d041 3247afc767cff1c98fe5277005f6653547b20fa4 CI <CI@example.com> 1617582377 +1000 commit: both-deleted.txt renamed in changed-them-added-us.txt
3247afc767cff1c98fe5277005f6653547b20fa4 3633f8c997d88e0c59202f498c8344da9da3aaf4 CI <CI@example.com> 1617582377 +1000 commit: three
3633f8c997d88e0c59202f498c8344da9da3aaf4 39d62c8a07e5103fef16c32373738ce92c4549b7 CI <CI@example.com> 1617582397 +1000 commit (merge): Merge branch 'conflict' into conflict_second
0000000000000000000000000000000000000000 98e834e9cdae1191de7fafb2b6f334bddd0793e8 CI <CI@example.com> 1617671344 +1000 branch: Created from conflict
98e834e9cdae1191de7fafb2b6f334bddd0793e8 c91b3b139ea108475c19839fcda3a4e33db4ccc9 CI <CI@example.com> 1617671344 +1000 commit: both-deleted.txt renamed in changed-them-added-us.txt
c91b3b139ea108475c19839fcda3a4e33db4ccc9 11bdfc142c42c6ffaa904890ab61ec76262ec9ca CI <CI@example.com> 1617671344 +1000 commit: three
11bdfc142c42c6ffaa904890ab61ec76262ec9ca 854f08fa802293e0679d07771547fe9fe5d159e8 CI <CI@example.com> 1617671365 +1000 commit (merge): Merge branch 'conflict' into conflict_second

View File

@ -0,0 +1,2 @@
xŤÎA
Â0@Q×9Eö‚d:i“ˇ«cf2AÁŘR"x|{·źżxş¶öěh8őÝĚŹ¤5IĘ\‰YrĚ€˘DłŘ�j)4Ŕ$�¸Ťw{wŻ‚HĆrLŁe¤Ş…‘Ł!‰ŞJŽ?ý±î~^üu^îö嶽ě˘k»y� M 0F†‚;ę�ęöçîúă »!z:ě

View File

@ -1,2 +0,0 @@
xЌОНЉВ0ЕqЧyЉ»*IуХЂ ®|Њ$чФ
¦•zвё=ь9ькЦЪMhtъ ;@HЮ3‚Fґc°ОivБД„д"кTЖ¤G­zд«ђуiО^џgж2Ґl№VfМ6‹џ9:ЦОЁь’eЫй|ЎУщт‡wnЏ;Ћukїd‚‰~кЇ‘~ЊЦZхµЈ_жЄlІ Њ;|”·P§е¦ЫJuЙл<И‚6д.гбхьDкЦКK`

View File

@ -1,2 +0,0 @@
x�ÎM
Â0@a×9Eö‚äºê1f¦3([J�o�àöñ¯½?‡õ-œÆ.bsc‚ŠÚ©¦ê#19âJ@—¥_(�Ùp—÷°1$@e(Àªž[UÉÀ¹¬¥ä˜PpŠÉàg<ÖÝN³½Nó]¾Ø·—\xí7닇\C°gïœ3G=PCþÜÍxtóßí:L

View File

@ -1,3 +0,0 @@
xŤÍÁ
Â0 €aĎ}ŠÜI˛šT�1ŘiŹ‘•kǨŕă»GđúóÁź[­ĎůÔww5ß2ęZš™ňJ…Šbt-nÂŁ�¦`źţh;Ě ÜçeňŻŐíĺ—Üę$¤×Ä�
ś ĂQŹI÷?yho?P*ň

View File

@ -0,0 +1 @@
x�ŽAjÃ0E»ö)f_4–*YJ!«c¤ùª‘Ü äøuoÐå{¼Å«[ï7£)¸7Ûª€›‹” »Üs ¤ÈGK1ûê2Òð�«Qž1û€\UÀœY‘š´2•Ø¼EU]Êó O[¶�.W:_®_xIÜqª[ÿ$Žœbb½³sn8ì1eøg>”Í–Qq‡AOö2:Ö¤C鶒¨BG[ÐǺÈú}Àóç/~ LÈ

View File

@ -0,0 +1,2 @@
x�ŽKŠÃ0³Ö)z?8ègÉ‚0 d•cHêç8ÙÁé@Ž?Ê ²{<
ªêÖÚMÈz}� ¤qd�èlpÞköa4ˆ ÉGԩؤ­‹N=òŽU(M˜œGªœaL2Œ8ç¹Øfç|af“äòK–m§ó…NçËÞ¹=î8Ö­ý’ &†hº�~ŒÖZõ·G ¾ÄUÙdwø(o¡ž–˜n+Õ%¯Wð Ú�™û|=?�ú¸XK.

View File

@ -1 +1 @@
837fbbc4ee6892b828a4a94be22c39814146aafb
8c82faa1358ce6cddba19d59b2924cbcc5ef1c8e

View File

@ -1 +1 @@
39d62c8a07e5103fef16c32373738ce92c4549b7
854f08fa802293e0679d07771547fe9fe5d159e8

View File

@ -1,7 +1,7 @@
0000000000000000000000000000000000000000 4c2d0500178f2642effb990e6d65e073022bf50b CI <CI@example.com> 1617665274 +1000 commit (initial): file0
4c2d0500178f2642effb990e6d65e073022bf50b 0315577613e2e65683d0dcf3371940a44ea073ca CI <CI@example.com> 1617665274 +1000 commit: file1
0315577613e2e65683d0dcf3371940a44ea073ca 5fbbe6422fb135ada1a05b15f61369747d4e6842 CI <CI@example.com> 1617665274 +1000 commit: file2
5fbbe6422fb135ada1a05b15f61369747d4e6842 f712b0a288ced6c49e6cfcf16f7af0991e50849d CI <CI@example.com> 1617665274 +1000 commit: file1 and file2
f712b0a288ced6c49e6cfcf16f7af0991e50849d 5192ae05adf946800910d092fb406eb04d56a578 CI <CI@example.com> 1617665274 +1000 commit: file
5192ae05adf946800910d092fb406eb04d56a578 667b767bf067438c08d47c54fe756a34f238b90d CI <CI@example.com> 1617665282 +1000 commit: asd
667b767bf067438c08d47c54fe756a34f238b90d d69102e71a2f400fe52feab06516e05cdaf7d0ba CI <CI@example.com> 1617665289 +1000 commit: test
0000000000000000000000000000000000000000 f3d94fa1d4be39b8daae35b82525bf357aa712de CI <CI@example.com> 1617671367 +1000 commit (initial): file0
f3d94fa1d4be39b8daae35b82525bf357aa712de 4b9d1f9f9fc76b123a5c90cd8396390cac41a3e3 CI <CI@example.com> 1617671367 +1000 commit: file1
4b9d1f9f9fc76b123a5c90cd8396390cac41a3e3 d7236d5f85ad303f5f23141661e4c8959610b70b CI <CI@example.com> 1617671367 +1000 commit: file2
d7236d5f85ad303f5f23141661e4c8959610b70b f24812da035a21812bc4c73018349ac2f0a6ec39 CI <CI@example.com> 1617671367 +1000 commit: file1 and file2
f24812da035a21812bc4c73018349ac2f0a6ec39 8b476a1094290d7251c56305e199eb2a203d8682 CI <CI@example.com> 1617671367 +1000 commit: file
8b476a1094290d7251c56305e199eb2a203d8682 af3ef564e968dbe92fb4e08a67dd5f835f43d4e8 CI <CI@example.com> 1617671375 +1000 commit: asd
af3ef564e968dbe92fb4e08a67dd5f835f43d4e8 22adc4567aba3d1a0acf28b4cef312922d516aeb CI <CI@example.com> 1617671383 +1000 commit: test

View File

@ -1,7 +1,7 @@
0000000000000000000000000000000000000000 4c2d0500178f2642effb990e6d65e073022bf50b CI <CI@example.com> 1617665274 +1000 commit (initial): file0
4c2d0500178f2642effb990e6d65e073022bf50b 0315577613e2e65683d0dcf3371940a44ea073ca CI <CI@example.com> 1617665274 +1000 commit: file1
0315577613e2e65683d0dcf3371940a44ea073ca 5fbbe6422fb135ada1a05b15f61369747d4e6842 CI <CI@example.com> 1617665274 +1000 commit: file2
5fbbe6422fb135ada1a05b15f61369747d4e6842 f712b0a288ced6c49e6cfcf16f7af0991e50849d CI <CI@example.com> 1617665274 +1000 commit: file1 and file2
f712b0a288ced6c49e6cfcf16f7af0991e50849d 5192ae05adf946800910d092fb406eb04d56a578 CI <CI@example.com> 1617665274 +1000 commit: file
5192ae05adf946800910d092fb406eb04d56a578 667b767bf067438c08d47c54fe756a34f238b90d CI <CI@example.com> 1617665282 +1000 commit: asd
667b767bf067438c08d47c54fe756a34f238b90d d69102e71a2f400fe52feab06516e05cdaf7d0ba CI <CI@example.com> 1617665289 +1000 commit: test
0000000000000000000000000000000000000000 f3d94fa1d4be39b8daae35b82525bf357aa712de CI <CI@example.com> 1617671367 +1000 commit (initial): file0
f3d94fa1d4be39b8daae35b82525bf357aa712de 4b9d1f9f9fc76b123a5c90cd8396390cac41a3e3 CI <CI@example.com> 1617671367 +1000 commit: file1
4b9d1f9f9fc76b123a5c90cd8396390cac41a3e3 d7236d5f85ad303f5f23141661e4c8959610b70b CI <CI@example.com> 1617671367 +1000 commit: file2
d7236d5f85ad303f5f23141661e4c8959610b70b f24812da035a21812bc4c73018349ac2f0a6ec39 CI <CI@example.com> 1617671367 +1000 commit: file1 and file2
f24812da035a21812bc4c73018349ac2f0a6ec39 8b476a1094290d7251c56305e199eb2a203d8682 CI <CI@example.com> 1617671367 +1000 commit: file
8b476a1094290d7251c56305e199eb2a203d8682 af3ef564e968dbe92fb4e08a67dd5f835f43d4e8 CI <CI@example.com> 1617671375 +1000 commit: asd
af3ef564e968dbe92fb4e08a67dd5f835f43d4e8 22adc4567aba3d1a0acf28b4cef312922d516aeb CI <CI@example.com> 1617671383 +1000 commit: test

View File

@ -1,5 +0,0 @@
x�ŽK
Ã0 »ö)¼/KþH�R
YåŠ-Ó@Ò„àB�_¡ÛÇÌðò¾mK³0à¥�ªvPf!W2ÆRPê\Kt@I+±3ú9c6‡œúnÖyˆ‘(�WÔûÒåê=Áœ„ âÈg1òi¯ý´ãdïãôÔ¯lǪ·¼o ©çSD
ö
Î9Ó×~ªéŸ¸©Ëªh~a¼96

View File

@ -0,0 +1,2 @@
x�ŽA
à E»öî ÅÑDG(¥�UŽ1Ž# Ä‚…¿¡üÍçñy|nµn]C´—~Šè(ˆLfÌhs¶TRɳ�à¥@´.±euÐ)ﮧ3”8ÂÁ'°ŽfŽ†3ºèÝ(Ä�§èÓ_íÔ˪ïËú”/Õc—·úÐà‡>€óA_Á£§ºü9WeÛŪçî:6

View File

@ -0,0 +1,2 @@
x��K
Β0@]η³$“ί$ "tΥcL“ �¶”ίzw�Η[ΌΌµ6w0Ϊ\ϊ!D©H΄�Qs�”*'LΥΕβKvΥeAτ&�Q;²v(dl(ΎFΟΕj[}5†€βrL>ΤιIρ»Ώ¶†ξΓψ”·}‘[ήΪ0 B®¨µV§=§Ίό™«:/‚ΐk�υ_b;υ

View File

@ -1,3 +0,0 @@
xŤŽK
Â0@]çł$3ÍD„®zŚI2ÁBÓ–Áă[oŕîńx‹—·Öć¤éŇđ> �cÔś�Ź•#ĆjB±%›j˛ Z
BjçCÖ¶¦$ÎŐ„�ĺÂČÚ&´Őáŕ˘7ľqÁ�âwmŚÜÇé)nű"·Ľµ Cďś%oŕŠZkuÚsŞËźąŞó"Ľř©/«+<|

View File

@ -1 +1 @@
d69102e71a2f400fe52feab06516e05cdaf7d0ba
22adc4567aba3d1a0acf28b4cef312922d516aeb

View File

@ -1,6 +1,6 @@
0000000000000000000000000000000000000000 36d991b179958e18281131be9914649ebe40bfba CI <CI@example.com> 1617668883 +1000 commit (initial): file0
36d991b179958e18281131be9914649ebe40bfba 7d3e3bcc43446179c3fe38dec8cfccb87514c3fa CI <CI@example.com> 1617668883 +1000 commit: file1
7d3e3bcc43446179c3fe38dec8cfccb87514c3fa f6707836a7d9a861ebfeff921a45ed43cd429cef CI <CI@example.com> 1617668883 +1000 commit: file2
f6707836a7d9a861ebfeff921a45ed43cd429cef 914d8fff27717808920192dc44535c711f41dc75 CI <CI@example.com> 1617668883 +1000 commit: file1 and file2
914d8fff27717808920192dc44535c711f41dc75 23b4388df8cdc033c4266f55a4234c41f2e6a857 CI <CI@example.com> 1617668883 +1000 commit: file
23b4388df8cdc033c4266f55a4234c41f2e6a857 c1a2676f74b3007ebb101d4d121cecb4850f1378 CI <CI@example.com> 1617668905 +1000 commit: test
0000000000000000000000000000000000000000 703f7069185227287623aaba7cdb0e56ae7a6c60 CI <CI@example.com> 1617671384 +1000 commit (initial): file0
703f7069185227287623aaba7cdb0e56ae7a6c60 a5c053a7a46bce2775edb371a9aa97424b542ab7 CI <CI@example.com> 1617671384 +1000 commit: file1
a5c053a7a46bce2775edb371a9aa97424b542ab7 6cdce80c062ba2c8f8758879834a936b84ead78c CI <CI@example.com> 1617671384 +1000 commit: file2
6cdce80c062ba2c8f8758879834a936b84ead78c c5f9a8793f15aa0db816944424adb4303eb036a8 CI <CI@example.com> 1617671384 +1000 commit: file1 and file2
c5f9a8793f15aa0db816944424adb4303eb036a8 e7c2bd00356720683d5bc4362ef5b92655fa8914 CI <CI@example.com> 1617671384 +1000 commit: file
e7c2bd00356720683d5bc4362ef5b92655fa8914 92ec47058a2894afbbbd69c5f79bff20c503e686 CI <CI@example.com> 1617671407 +1000 commit: test

View File

@ -1,6 +1,6 @@
0000000000000000000000000000000000000000 36d991b179958e18281131be9914649ebe40bfba CI <CI@example.com> 1617668883 +1000 commit (initial): file0
36d991b179958e18281131be9914649ebe40bfba 7d3e3bcc43446179c3fe38dec8cfccb87514c3fa CI <CI@example.com> 1617668883 +1000 commit: file1
7d3e3bcc43446179c3fe38dec8cfccb87514c3fa f6707836a7d9a861ebfeff921a45ed43cd429cef CI <CI@example.com> 1617668883 +1000 commit: file2
f6707836a7d9a861ebfeff921a45ed43cd429cef 914d8fff27717808920192dc44535c711f41dc75 CI <CI@example.com> 1617668883 +1000 commit: file1 and file2
914d8fff27717808920192dc44535c711f41dc75 23b4388df8cdc033c4266f55a4234c41f2e6a857 CI <CI@example.com> 1617668883 +1000 commit: file
23b4388df8cdc033c4266f55a4234c41f2e6a857 c1a2676f74b3007ebb101d4d121cecb4850f1378 CI <CI@example.com> 1617668905 +1000 commit: test
0000000000000000000000000000000000000000 703f7069185227287623aaba7cdb0e56ae7a6c60 CI <CI@example.com> 1617671384 +1000 commit (initial): file0
703f7069185227287623aaba7cdb0e56ae7a6c60 a5c053a7a46bce2775edb371a9aa97424b542ab7 CI <CI@example.com> 1617671384 +1000 commit: file1
a5c053a7a46bce2775edb371a9aa97424b542ab7 6cdce80c062ba2c8f8758879834a936b84ead78c CI <CI@example.com> 1617671384 +1000 commit: file2
6cdce80c062ba2c8f8758879834a936b84ead78c c5f9a8793f15aa0db816944424adb4303eb036a8 CI <CI@example.com> 1617671384 +1000 commit: file1 and file2
c5f9a8793f15aa0db816944424adb4303eb036a8 e7c2bd00356720683d5bc4362ef5b92655fa8914 CI <CI@example.com> 1617671384 +1000 commit: file
e7c2bd00356720683d5bc4362ef5b92655fa8914 92ec47058a2894afbbbd69c5f79bff20c503e686 CI <CI@example.com> 1617671407 +1000 commit: test

View File

@ -1,2 +0,0 @@
x�־A
ֳ @ׁ®=…�Bqװ�”Rָ*ַ׀q₪�״„`¡ַ¯Gטצף�קײײ®�ל¥�"÷˜€ִּl(qJ¶8¬™C¢©'ײפהׁƒ:ׂ)ן®"ָˆ¦(mp�eֱִH²x“kN*}תk?ץ¼ט�¼<ו›�±ֹ�קצ׀€c�N_ֱ£FS]‏ה×®›€תdֺ9O

View File

@ -0,0 +1,2 @@
x�ŽK
Ã0 »ö)´/ËvlJ)d•c(²Lù\èñ›Þ »Ç0O¶e™8ë.íP…”rQò‘ѲPÊ•3æ¨tEB ¢ˆ�#ufçC×QŠ(Y±Ñ�ì„*¥ŽÎŽ|àìãHA¹$ÃïöÚè¸÷ÃS?¼ì³Þd[€SLè)À­µæ¤ç©¦ê¦N³"ðZà·œù̈<Î

View File

@ -0,0 +1,3 @@
x�ÎA
à @Ñ®=…ûBqtÔJ)d•cŒ:Ò@lB°Ðã7Gèöó¿l½/CC‚Ë8D4a&ëjñ­$ÛJ3$™
yô‚u¶¦\Ñ«�y}ÂÄ“kà™MÍ!!¢E®�q’� LŠ?ãµzšõ}šŸò徯r+[hCG¨¯`ŒQg=§†üÉU[VQ?¬9

View File

@ -1,2 +0,0 @@
x�ÎA
Â0…a×9ÅìÉ$i2¡«#�™`¡±¥Dðøæn?þ�÷Z×8ºK;UaT¢œ¬0 9—ËRd°˜¢–DŠDÎ/ìØùÔwƒ$^;pð!DL#û¢žD™¸0/” ݲɟöÚO˜f¸OóS¿¹›Þx¯À>Œ‘ˆ<\ÑZkºöSMÿÌMY7uæ'p:Ü

View File

@ -1 +1 @@
c1a2676f74b3007ebb101d4d121cecb4850f1378
92ec47058a2894afbbbd69c5f79bff20c503e686

View File

@ -1,6 +1,6 @@
0000000000000000000000000000000000000000 e92eec6edb251fbc68435ffd5cd7a52f886f062d CI <CI@example.com> 1617668986 +1000 commit (initial): file0
e92eec6edb251fbc68435ffd5cd7a52f886f062d 76ff9510a110483d5de27a6d2c1b1a0e82207431 CI <CI@example.com> 1617668986 +1000 commit: file1
76ff9510a110483d5de27a6d2c1b1a0e82207431 a668d8690712ac945055bd187ed70fd10541dd38 CI <CI@example.com> 1617668986 +1000 commit: file2
a668d8690712ac945055bd187ed70fd10541dd38 2c7b461ce430e2d743ee239f0c994fd60f90c863 CI <CI@example.com> 1617668986 +1000 commit: file1 and file2
2c7b461ce430e2d743ee239f0c994fd60f90c863 ac8bf479b326a578d74ca8fa9d3a9d2c86188770 CI <CI@example.com> 1617668986 +1000 commit: file
ac8bf479b326a578d74ca8fa9d3a9d2c86188770 871d1c0423b07670f34db0ca48738dcec548512e CI <CI@example.com> 1617669005 +1000 commit: test
0000000000000000000000000000000000000000 8ed4f7b4eae8cc97d9add459348cc95e936b8f25 CI <CI@example.com> 1617671409 +1000 commit (initial): file0
8ed4f7b4eae8cc97d9add459348cc95e936b8f25 c1a1ba9d2873d7163606bb5fdf46e50975db042b CI <CI@example.com> 1617671409 +1000 commit: file1
c1a1ba9d2873d7163606bb5fdf46e50975db042b 72226d27a85fff688d32c134a22ebe650d6c2e41 CI <CI@example.com> 1617671409 +1000 commit: file2
72226d27a85fff688d32c134a22ebe650d6c2e41 b35d7fa77c939890020952987eeb461f410297d8 CI <CI@example.com> 1617671409 +1000 commit: file1 and file2
b35d7fa77c939890020952987eeb461f410297d8 231410172e8f51138f06d8dff963898fb1e97b30 CI <CI@example.com> 1617671409 +1000 commit: file
231410172e8f51138f06d8dff963898fb1e97b30 db6681a3e9fb9fb6ef524771cdc763904dd2b54d CI <CI@example.com> 1617671428 +1000 commit: test

View File

@ -1,6 +1,6 @@
0000000000000000000000000000000000000000 e92eec6edb251fbc68435ffd5cd7a52f886f062d CI <CI@example.com> 1617668986 +1000 commit (initial): file0
e92eec6edb251fbc68435ffd5cd7a52f886f062d 76ff9510a110483d5de27a6d2c1b1a0e82207431 CI <CI@example.com> 1617668986 +1000 commit: file1
76ff9510a110483d5de27a6d2c1b1a0e82207431 a668d8690712ac945055bd187ed70fd10541dd38 CI <CI@example.com> 1617668986 +1000 commit: file2
a668d8690712ac945055bd187ed70fd10541dd38 2c7b461ce430e2d743ee239f0c994fd60f90c863 CI <CI@example.com> 1617668986 +1000 commit: file1 and file2
2c7b461ce430e2d743ee239f0c994fd60f90c863 ac8bf479b326a578d74ca8fa9d3a9d2c86188770 CI <CI@example.com> 1617668986 +1000 commit: file
ac8bf479b326a578d74ca8fa9d3a9d2c86188770 871d1c0423b07670f34db0ca48738dcec548512e CI <CI@example.com> 1617669005 +1000 commit: test
0000000000000000000000000000000000000000 8ed4f7b4eae8cc97d9add459348cc95e936b8f25 CI <CI@example.com> 1617671409 +1000 commit (initial): file0
8ed4f7b4eae8cc97d9add459348cc95e936b8f25 c1a1ba9d2873d7163606bb5fdf46e50975db042b CI <CI@example.com> 1617671409 +1000 commit: file1
c1a1ba9d2873d7163606bb5fdf46e50975db042b 72226d27a85fff688d32c134a22ebe650d6c2e41 CI <CI@example.com> 1617671409 +1000 commit: file2
72226d27a85fff688d32c134a22ebe650d6c2e41 b35d7fa77c939890020952987eeb461f410297d8 CI <CI@example.com> 1617671409 +1000 commit: file1 and file2
b35d7fa77c939890020952987eeb461f410297d8 231410172e8f51138f06d8dff963898fb1e97b30 CI <CI@example.com> 1617671409 +1000 commit: file
231410172e8f51138f06d8dff963898fb1e97b30 db6681a3e9fb9fb6ef524771cdc763904dd2b54d CI <CI@example.com> 1617671428 +1000 commit: test

View File

@ -1,2 +0,0 @@
x�ÎM
Â0@a×9Eö‚dò3I@DèªÇ˜N&XhL)<¾=‚ÛÇ·xÜ[[‡†l/ãÑÅDdÎÌ&Ùâ°.)‡ZœXgÐg�ÔN‡¼‡–lE¥,6À)1yj-�K¤`kJX Ú¢è3^ýÐÓ¬ïÓü”/µ}“÷öЀSN¨¯`ŒQg=§†üÉU]7õ±:¨

View File

@ -0,0 +1,2 @@
xŤÍA
Â0Fa×9Ĺ왉câ€�ĐUŹ‘4°ĐĐR"x|{·ŹŢ´¶6wŐSß\b6ł’ĺC*đ=W­ěs©Ţ ¦ę]úô÷şÓ0Ňc_ř¦¶-¸Lk{’‰!Š˛ŃY�Ůő�tüÉ]ť°űŰ›+î

View File

@ -0,0 +1,3 @@
x�ŽK
Â0@]ç³$3ÍD„®<Ƙ™`¡iK‰àñ­7p÷x¼Å+kkS²tê»*ĘEÓ-—s匹º$^Š«®(¢§¤d6Þué‰(EN¾ÖR’�
Ž‰ô©Á[ …Ô¡áw­;Œ¸Ž�»~¸m³^ÊÚn€cˆèl†3ZkÍa�©®æ¦N³"ð"ð#2_œÎ<{

View File

@ -0,0 +1,3 @@
xŤŽM
Â0F]çł$?“¤"BW=Ćt2Á‚±ĄDđřÖ¸üďÁ'kkKGţÔwU(6'±ÄÂěKHu–Ěk ę�MH�Đ™Ťw}u´`Í3*ëptą—‚‘ţfT
iŞŹ†ßý±î0Np§»~¸mO˝ČÚnŕ’Ë);´gg­5=NuýS7uyŞ3_ Ë:n

View File

@ -0,0 +1,3 @@
x�ÎM
Â0@a×9Åì™ÉÏdE„®zŒ&� `l©<¾=‚ÛÇ·xemíÑ��ú®
EX‚g„‘r*‘rä,ÉÕ„µÔè1+f›w}u°Ž<!E«R‘“Š¼ÈRkb'Ij&M1;4ó§ß×Æ †qºéwnÛS/emW ¦È‘¼8"š£S]ÿä¦ë»›7�

View File

@ -1 +1 @@
871d1c0423b07670f34db0ca48738dcec548512e
db6681a3e9fb9fb6ef524771cdc763904dd2b54d

View File

@ -1 +1 @@
8f9f24614460289546a49cb6f12a72b764af14f5
82db6d0e4502f489719ea0f3dbe7e14413c6d28a

View File

@ -1 +1 @@
c622516f02266679505b89103007ec04b8748b67
8cd762c119834784fdbf97e9bb3b4c15e804ebaa

Some files were not shown because too many files have changed in this diff Show More