diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-27 17:46:46 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-28 00:42:22 +0100 |
commit | 24c1878260351d9f9f6c575cbeeb5878104d6a0e (patch) | |
tree | c6a9575aa84197f7f33515ca4d55816134d1569b /fixtures | |
parent | 1c2602a791371e76d52f89b2c8193cb200c66ad6 (diff) | |
download | go-git-24c1878260351d9f9f6c575cbeeb5878104d6a0e.tar.gz |
new repository constructors and worktree
Diffstat (limited to 'fixtures')
-rw-r--r-- | fixtures/fixtures.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fixtures/fixtures.go b/fixtures/fixtures.go index 6a86bdd..f79e107 100644 --- a/fixtures/fixtures.go +++ b/fixtures/fixtures.go @@ -67,7 +67,10 @@ var fixtures = Fixtures{{ URL: "https://github.com/git-fixtures/basic.git", DotGitHash: plumbing.NewHash("935e5ac17c41c309c356639816ea0694a568c484"), }, { - + Tags: []string{".git", "worktree"}, + URL: "https://github.com/git-fixtures/basic.git", + WorktreeHash: plumbing.NewHash("e4413db6700d0e72e7680b17c3d5ebbc2d1861bc"), +}, { Tags: []string{"packfile", ".git", "unpacked", "multi-packfile"}, URL: "https://github.com/src-d/go-git.git", Head: plumbing.NewHash("e8788ad9165781196e917292d6055cba1d78664e"), @@ -155,6 +158,7 @@ type Fixture struct { Head plumbing.Hash PackfileHash plumbing.Hash DotGitHash plumbing.Hash + WorktreeHash plumbing.Hash ObjectsCount int32 } |