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<01>ÍA
Â0@Q×9Åì™iÆI
"BW=FšL°Ð!R"èííÜ~üÜÌÖÄrê»* ˜d £ÆÂ¬¥DÕÀ û"\S¾.½û³í0Ípæ‡~½6½äfw ¡ <20>¼áLˆèŽzLºþÉ<C3BE>}ëº)¹2r,Ï

View file

@ -1,2 +0,0 @@
x<01>ŽK
Â0@]çÙ 2“dò<64>"BW=Æ4™`¡±¥DÐÛÛ#¸}<x/o­-]cr—~ˆhS=6³±¢Ñ{ŠlÉKðÆYÊL Õ·¼ºNŒqŒ¥* kÉ<#JɱʶÖXáÌŠßý¹zœô0NùpÛW¹å­Ý5žIŠ@ô@<40>ôœêò§®Ú·.«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łŘ<C582>j)4Ŕ$<24>¸Ťw{wŻrLŁe¤Ş…Ł!‰ŞJŽ?ý±î~^üu^îöĺ¶˝ě˘k»y<C2BB> M 0F<>ęöçîúă »!z:ě

View file

@ -1,2 +0,0 @@
xЌОНЉВ0ЕqЧyЉ»*IуХЂ ®|Њ$чФ
¦•zё=ь9ькЦЪMhtъ ;@HЮ3Fґc°ОivБД„д"кTЖ¤G­«ђу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<01>ÎM
Â0@a×9Eöäºê1f¦3([J<04>o<EFBFBD>àöñ¯½?‡õ-œÆ.bsc‚ŠÚ©¦ê#19âJ@—¥_(<28>Ùp—÷°1$@e(Àªž[UÉÀ¹¬¥ä˜PpŠÉàg<ÖÝN³½Nó]¾Ø·—\xí7ë‡\C°gïœ3G=PCþÜÍxßí:L

View file

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

View file

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

View file

@ -0,0 +1,2 @@
x<01>ŽKŠÃ0³Ö)z?8ègÉ0 d•cHêç8ÙÁé@Ž?Ê ²{<
ªêÖÚMÈz}<7D> ¤qd<04>èlpÞköa4ˆ ÉGԩؤ­N=òŽU(M˜œGªœaL2Œ8ç¹Øfç|af“äòKm§ó…NçËÞ¹=î8Ö­ý &†hº<68>~ŒÖZõ·G ¾ÄUÙdwø(o¡ž˜n+Õ%¯Wð Ú<>™û|=?<3F>ú¸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<01>ŽK
Ã0 »ö)¼/KþH<C3BE>R
Š-Ó@Ò„àB<C3A0>_¡ÛÇÌðò¾mK³0à¥<C3A0>ªvPf!W2ÆRPê\Kt@I+±3ú9c6‡œúnÖyˆ(<28>ûÒåê=Áœ„ âÈg1òi¯ý´ãdïãôÔ¯lǪ·¼o ©çSD
ö
Î9Ó×~ªéŸ¸©Ëªh~a¼96

View file

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

View file

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

View file

@ -1,3 +0,0 @@
xŤŽK
Â0@]çł$3ÍD„®zŚI2ÁBÓÁă[oŕîńx—·Öć¤éŇđ> <09>cÔś<C394>Ź•#ĆjB±%j˛ Z
BjçCÖ¶¦$ÎŐ„<C590>ĺÂČÚ&´Őáŕ˘7ľ<71>â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<01>־A
ֳ @ׁ®=…<>Bqװ<71>”Rָ*ַ׀q₪<71>״„`¡ַ¯Gטצף<16>קײײ®<D7B2>ל¥<D79C>˜€ִּl(qJ¶8¬™C¢©פהׁƒ:ׂ)ן®ˆ¦(mp<>eֱִH²x“kN*}תk?ץ¼ט<C2BC>¼<ו<D795>±ֹ<C2B1>קצ׀c<>N_ֱ£FS]‏ה×®›€תdֺ9O

View file

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

View file

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

View file

@ -1,2 +0,0 @@
x<01>ÎA
Â0…a×9ÅìÉ$i2¡«#<23>™`¡±¥Dðøæn?þ<07>÷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<01>ÎM
Â0@a×9Eödò3I@DèªÇ˜N&XhL)<¾=ÛÇ·xÜ[[‡†l/ãÑÅDdÎÌ&Ùâ°.)‡ZœXgÐg<C390>ÔN‡¼‡lE¥,6À)1yj-<2D>K¤`kJX Ú¢è3^ýÐÓ¬ïÓü”/µ}“÷öЀSN¨¯`ŒQg=§†üÉU]7õ±:¨

View file

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

View file

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

View file

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

View file

@ -0,0 +1,3 @@
x<01>ÎM
Â0@a×9Åì™ÉÏdE„®zŒ&<26> `l©<¾=ÛÇ·xemíÑ<C3AD><12>ú®
EXgr*rä,ÉÕ„µÔè1+fw}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