]> source.dussan.org Git - gitea.git/commit
Implement git refs API for listing references (branches, tags and other) (#5354)
authorLauris BH <lauris@nix.lv>
Tue, 27 Nov 2018 21:52:20 +0000 (23:52 +0200)
committertechknowlogick <hello@techknowlogick.com>
Tue, 27 Nov 2018 21:52:20 +0000 (16:52 -0500)
commit08bf443016bae30690417b4835076709ef36e3b0
treeece591d95416dd85e726dce15e0ab52872a17b06
parent294904321cb6de535237a6a156d5c4ec462bc117
Implement git refs API for listing references (branches, tags and other) (#5354)

* Inital routes to git refs api

* Git refs API implementation

* Update swagger

* Fix copyright

* Make swagger happy add basic test

* Fix test

* Fix test again :)
268 files changed:
Gopkg.lock
integrations/api_repo_git_ref_test.go [new file with mode: 0644]
routers/api/v1/api.go
routers/api/v1/repo/git_ref.go [new file with mode: 0644]
routers/api/v1/swagger/repo.go
templates/swagger/v1_json.tmpl
vendor/code.gitea.io/git/ref.go [new file with mode: 0644]
vendor/code.gitea.io/git/repo_branch.go
vendor/code.gitea.io/git/repo_ref.go [new file with mode: 0644]
vendor/code.gitea.io/sdk/gitea/repo_refs.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/LICENSE [new file with mode: 0644]
vendor/github.com/emirpasic/gods/containers/containers.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/containers/enumerable.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/containers/iterator.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/containers/serialization.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/lists/arraylist/arraylist.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/lists/arraylist/enumerable.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/lists/arraylist/iterator.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/lists/arraylist/serialization.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/lists/lists.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/trees/binaryheap/binaryheap.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/trees/binaryheap/iterator.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/trees/binaryheap/serialization.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/trees/trees.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/utils/comparator.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/utils/sort.go [new file with mode: 0644]
vendor/github.com/emirpasic/gods/utils/utils.go [new file with mode: 0644]
vendor/github.com/jbenet/go-context/LICENSE [new file with mode: 0644]
vendor/github.com/jbenet/go-context/io/ctxio.go [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/AUTHORS.txt [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/LICENSE [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/config.go [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/lexer.go [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/parser.go [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/position.go [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/token.go [new file with mode: 0644]
vendor/github.com/kevinburke/ssh_config/validators.go [new file with mode: 0644]
vendor/github.com/mitchellh/go-homedir/LICENSE [new file with mode: 0644]
vendor/github.com/mitchellh/go-homedir/homedir.go [new file with mode: 0644]
vendor/github.com/pelletier/go-buffruneio/buffruneio.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/LICENSE [new file with mode: 0644]
vendor/github.com/src-d/gcfg/doc.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/errors.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/go1_0.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/go1_2.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/read.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/scanner/errors.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/scanner/scanner.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/set.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/token/position.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/token/serialize.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/token/token.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/types/bool.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/types/doc.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/types/enum.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/types/int.go [new file with mode: 0644]
vendor/github.com/src-d/gcfg/types/scan.go [new file with mode: 0644]
vendor/github.com/xanzy/ssh-agent/LICENSE [new file with mode: 0644]
vendor/github.com/xanzy/ssh-agent/pageant_windows.go [new file with mode: 0644]
vendor/github.com/xanzy/ssh-agent/sshagent.go [new file with mode: 0644]
vendor/github.com/xanzy/ssh-agent/sshagent_windows.go [new file with mode: 0644]
vendor/golang.org/x/crypto/cast5/cast5.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/armor/armor.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/armor/encode.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/canonical_text.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/errors/errors.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/keys.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/compressed.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/config.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/encrypted_key.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/literal.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/ocfb.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/one_pass_signature.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/opaque.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/packet.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/private_key.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/public_key.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/public_key_v3.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/reader.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/signature.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/signature_v3.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/symmetric_key_encrypted.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/symmetrically_encrypted.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/userattribute.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/packet/userid.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/read.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/s2k/s2k.go [new file with mode: 0644]
vendor/golang.org/x/crypto/openpgp/write.go [new file with mode: 0644]
vendor/golang.org/x/crypto/ssh/agent/client.go [new file with mode: 0644]
vendor/golang.org/x/crypto/ssh/agent/forward.go [new file with mode: 0644]
vendor/golang.org/x/crypto/ssh/agent/keyring.go [new file with mode: 0644]
vendor/golang.org/x/crypto/ssh/agent/server.go [new file with mode: 0644]
vendor/golang.org/x/crypto/ssh/knownhosts/knownhosts.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/LICENSE [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/fs.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/helper/chroot/chroot.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/helper/polyfill/polyfill.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/osfs/os.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/osfs/os_posix.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/osfs/os_windows.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/util/glob.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-billy.v4/util/util.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/LICENSE [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/blame.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/config/branch.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/config/config.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/config/modules.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/config/refspec.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/internal/revision/parser.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/internal/revision/scanner.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/internal/revision/token.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/object_walker.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/options.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/cache/buffer_lru.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/cache/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/cache/object_lru.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/error.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/filemode/filemode.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/config/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/config/decoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/config/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/config/encoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/config/option.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/config/section.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/diff/patch.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/diff/unified_encoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/gitignore/dir.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/gitignore/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/gitignore/matcher.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/gitignore/pattern.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile/decoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile/encoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile/idxfile.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/idxfile/writer.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/index/decoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/index/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/index/encoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/index/index.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/index/match.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/objfile/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/objfile/reader.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/objfile/writer.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/delta_index.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/delta_selector.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/diff_delta.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/encoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/error.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/fsobject.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/object_pack.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/packfile.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/parser.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/patch_delta.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/packfile/scanner.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/pktline/encoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/format/pktline/scanner.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/hash.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/memory.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/blob.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/change.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/change_adaptor.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/commit.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/commit_walker.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/commit_walker_bfs.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/commit_walker_ctime.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/commit_walker_file.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/difftree.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/file.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/object.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/patch.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/tag.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/tree.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/object/treenoder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/advrefs.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/advrefs_decode.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/advrefs_encode.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/capability/capability.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/capability/list.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/report_status.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/shallowupd.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband/demux.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband/muxer.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/srvresp.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/ulreq.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/ulreq_decode.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/ulreq_encode.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/updreq.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/updreq_decode.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/updreq_encode.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/uppackreq.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/uppackresp.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/reference.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/revision.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/revlist/revlist.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/storer/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/storer/index.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/storer/object.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/storer/reference.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/storer/shallow.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/storer/storer.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/client/client.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/file/client.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/file/server.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/git/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/http/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/http/receive_pack.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/http/upload_pack.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/internal/common/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/internal/common/server.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/server/loader.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/server/server.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/ssh/auth_method.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/plumbing/transport/ssh/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/prune.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/references.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/remote.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/repository.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/status.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/config.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/deltaobject.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit/dotgit.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit/dotgit_rewrite_packed_refs.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit/dotgit_setref.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit/dotgit_setref_norwfs.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit/writers.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/index.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/module.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/object.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/reference.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/shallow.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/filesystem/storage.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/memory/storage.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/storage/storer.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/submodule.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/binary/read.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/binary/write.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/diff/diff.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/ioutil/common.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/change.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/difftree.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/doc.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/doubleiter.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/filesystem/node.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/index/node.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/internal/frame/frame.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/iter.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/noder/noder.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/utils/merkletrie/noder/path.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/worktree.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/worktree_bsd.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/worktree_commit.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/worktree_linux.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/worktree_status.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/worktree_unix_other.go [new file with mode: 0644]
vendor/gopkg.in/src-d/go-git.v4/worktree_windows.go [new file with mode: 0644]
vendor/gopkg.in/warnings.v0/LICENSE [new file with mode: 0644]
vendor/gopkg.in/warnings.v0/warnings.go [new file with mode: 0644]