Skip to content

Commit 8b14952

Browse files
committed
Add tags for index extensions
Signed-off-by: Paulo Gomes <paulo@entire.io>
1 parent 3570227 commit 8b14952

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

fixtures.go

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ var data embed.FS
2222

2323
//nolint:gochecknoglobals
2424
var fixtures = Fixtures{{
25-
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "ofs-delta", ".git", "root-reference"},
25+
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "ofs-delta", ".git", "root-reference", "index-ext-tree"},
2626
URL: "https://github.com/git-fixtures/root-references.git",
2727
Head: "6ecf0ef2c2dffb796033e5a02219af86ec6584e5",
2828
PackfileHash: "135fe3d1ad828afe68706f1d481aedbcfa7a86d2",
2929
DotGitHash: "78c5fb882e76286d8201016cffee63ea7060a0c2",
3030
ObjectsCount: 68,
3131
ObjectFormat: "sha1",
3232
}, {
33-
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "ofs-delta", ".git"},
33+
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "ofs-delta", ".git", "index-ext-tree"},
3434
URL: "https://github.com/git-fixtures/basic.git",
3535
Head: "6ecf0ef2c2dffb796033e5a02219af86ec6584e5",
3636
PackfileHash: "a3fed42da1e8189a077c0e6846c040dcf73fc9dd",
@@ -46,35 +46,35 @@ var fixtures = Fixtures{{
4646
ObjectsCount: 31,
4747
ObjectFormat: "sha1",
4848
}, {
49-
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "ofs-delta", ".git", "single-branch", "rev-v1"},
49+
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "ofs-delta", ".git", "single-branch", "rev-v1", "index-ext-tree"},
5050
URL: "https://github.com/git-fixtures/basic.git",
5151
Head: "6ecf0ef2c2dffb796033e5a02219af86ec6584e5",
5252
PackfileHash: "61f0ee9c75af1f9678e6f76ff39fbe372b6f1c45",
5353
DotGitHash: "21504f6d2cc2ef0c9d6ebb8802c7b49abae40c1a",
5454
ObjectsCount: 28,
5555
ObjectFormat: "sha1",
5656
}, {
57-
Tags: []string{".git", "merge-conflict", "index-v2"},
57+
Tags: []string{".git", "merge-conflict", "index-v2", "index-ext-none"},
5858
URL: "https://github.com/git-fixtures/basic.git",
5959
DotGitHash: "4870d54b5b04e43da8cf99ceec179d9675494af8",
6060
ObjectFormat: "sha1",
6161
}, {
62-
Tags: []string{".git", "resolve-undo", "index-v2"},
62+
Tags: []string{".git", "resolve-undo", "index-v2", "index-ext-reuc"},
6363
URL: "https://github.com/git-fixtures/basic.git",
6464
DotGitHash: "df6781fd40b8f4911d70ce71f8387b991615cd6d",
6565
ObjectFormat: "sha1",
6666
}, {
67-
Tags: []string{".git", "intent-to-add", "index-v3"},
67+
Tags: []string{".git", "intent-to-add", "index-v3", "index-ext-tree"},
6868
URL: "https://github.com/git-fixtures/basic.git",
6969
DotGitHash: "4e7600af05c3356e8b142263e127b76f010facfc",
7070
ObjectFormat: "sha1",
7171
}, {
72-
Tags: []string{".git", "index-v4"},
72+
Tags: []string{".git", "index-v4", "index-ext-tree"},
7373
URL: "https://github.com/git-fixtures/basic.git",
7474
DotGitHash: "935e5ac17c41c309c356639816ea0694a568c484",
7575
ObjectFormat: "sha1",
7676
}, {
77-
Tags: []string{".git", "end-of-index-entry", "index-v2"},
77+
Tags: []string{".git", "end-of-index-entry", "index-v2", "index-ext-eoie", "index-ext-tree"},
7878
URL: "https://github.com/git-fixtures/basic.git",
7979
DotGitHash: "ab06771a67110b976953d34400d4dbc465ccd2d9",
8080
ObjectFormat: "sha1",
@@ -89,15 +89,15 @@ var fixtures = Fixtures{{
8989
WorktreeHash: "8b4d55c85677b6b94bef2e46832ed2174ed6ecaf",
9090
ObjectFormat: "sha1",
9191
}, {
92-
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", ".git", "unpacked", "multi-packfile"},
92+
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", ".git", "unpacked", "multi-packfile", "index-ext-tree"},
9393
URL: "https://github.com/src-d/go-git.git",
9494
Head: "e8788ad9165781196e917292d6055cba1d78664e",
9595
PackfileHash: "3559b3b47e695b33b0913237a4df3357e739831c",
9696
DotGitHash: "174be6bd4292c18160542ae6dc6704b877b8a01a",
9797
ObjectsCount: 2133,
9898
ObjectFormat: "sha1",
9999
}, {
100-
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", ".git", "tags"},
100+
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", ".git", "tags", "index-ext-tree"},
101101
URL: "https://github.com/git-fixtures/tags.git",
102102
Head: "f7b877701fbf855b44c0a9e86f3fdce2c298b07f",
103103
DotGitHash: "c0c7c57ab1753ddbd26cc45322299ddd12842794",
@@ -117,7 +117,7 @@ var fixtures = Fixtures{{
117117
PackfileHash: "4ec6344877f494690fc800aceaf2ca0e86786acb",
118118
ObjectFormat: "sha1",
119119
}, {
120-
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "empty-folder", "rev-v1"},
120+
Tags: []string{"packfile", "pack-v2", "idx-v2", "index-v2", "empty-folder", "rev-v1", "index-ext-tree"},
121121
URL: "https://github.com/cpcs499/Final_Pres_P.git",
122122
Head: "70bade703ce556c2c7391a8065c45c943e8b6bc3",
123123
PackfileHash: "29f304662fd64f102d94722cf5bd8802d9a9472c",
@@ -184,25 +184,25 @@ var fixtures = Fixtures{{
184184
Head: "ee372bb08322c1e6e7c6c4f953cc6bf72784e7fb", // the thin pack adds this commit.
185185
ObjectFormat: "sha1",
186186
}, {
187-
Tags: []string{"merge-base", "index-v2"},
187+
Tags: []string{"merge-base", "index-v2", "index-ext-reuc", "index-ext-tree"},
188188
DotGitHash: "26baa505b9f6fb2024b9999c140b75514718c988",
189189
ObjectFormat: "sha1",
190190
}, {
191-
Tags: []string{"commit-graph", "index-v2"},
191+
Tags: []string{"commit-graph", "index-v2", "index-ext-tree"},
192192
Head: "b9d69064b190e7aedccf84731ca1d917871f8a1c",
193193
PackfileHash: "769137af7784db501bca677fbd56fef8b52515b7",
194194
DotGitHash: "cf717ccadce761d60bb4a8557a7b9a2efd23816a",
195195
ObjectsCount: 31,
196196
ObjectFormat: "sha1",
197197
}, {
198-
Tags: []string{"commit-graph-chain", "index-v2"},
198+
Tags: []string{"commit-graph-chain", "index-v2", "index-ext-tree"},
199199
Head: "b9d69064b190e7aedccf84731ca1d917871f8a1c",
200200
PackfileHash: "769137af7784db501bca677fbd56fef8b52515b7",
201201
DotGitHash: "00a1fc100787506f842e55511994f08df2c2cd66",
202202
ObjectsCount: 31,
203203
ObjectFormat: "sha1",
204204
}, {
205-
Tags: []string{"commit-graph-chain-2", "rev-v1", "index-v2"},
205+
Tags: []string{"commit-graph-chain-2", "rev-v1", "index-v2", "index-ext-tree"},
206206
Head: "ec6f456c0e8c7058a29611429965aa05c190b54b",
207207
PackfileHash: "06ede69e9eba9f1af36eeee184402dc3ad705cd7",
208208
DotGitHash: "77b6511a6e67c99162ebcecd2763a9a19a7ad429",
@@ -233,7 +233,7 @@ var fixtures = Fixtures{{
233233
PackfileHash: "bc4b855a55cae7703c023d4e36e3a7c9f5d84491",
234234
ObjectFormat: "sha1",
235235
}, {
236-
Tags: []string{".git-sha256", ".git", "index-v2"}, // Drop .git-sha256 as part of V6.
236+
Tags: []string{".git-sha256", ".git", "index-v2", "index-ext-tree"}, // Drop .git-sha256 as part of V6.
237237
URL: "https://gitlab.com/pjbgf/sha256.git",
238238
DotGitHash: "40143428b59fe03546fabba0603268bba3b3c58b",
239239
ObjectFormat: "sha256",

0 commit comments

Comments
 (0)