├── .github └── workflows │ ├── binaries.yml │ ├── dgit-push.yml │ └── homebrew.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── init.go ├── remotehelper.go ├── root.go ├── shared.go ├── team.go ├── version.go └── whoami.go ├── constants └── constants.go ├── dgit-black.png ├── git-remote-dg ├── go.mod ├── go.sum ├── initializer └── initializer.go ├── keyring └── keyring.go ├── main.go ├── msg ├── messages.go └── parse.go ├── remotehelper ├── runner.go └── runner_test.go ├── storage ├── chaintree │ ├── object.go │ ├── reference.go │ ├── storage.go │ └── storage_test.go ├── config.go ├── object.go ├── object_test.go ├── objiter.go ├── readonly │ ├── readonly.go │ └── readonly_test.go ├── siaskynet │ ├── net.go │ └── object.go └── split │ ├── split.go │ └── split_test.go ├── transport └── dgit │ ├── auth.go │ ├── client.go │ ├── loader.go │ └── repo.go └── tupelo ├── clientbuilder └── clientbuilder.go ├── namedtree ├── namedtree.go └── namedtree_test.go ├── repotree └── repotree.go ├── teamtree ├── member.go ├── members.go └── teamtree.go ├── tree └── tree.go └── usertree └── usertree.go /.github/workflows/binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/.github/workflows/binaries.yml -------------------------------------------------------------------------------- /.github/workflows/dgit-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/.github/workflows/dgit-push.yml -------------------------------------------------------------------------------- /.github/workflows/homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/.github/workflows/homebrew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/README.md -------------------------------------------------------------------------------- /cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/cmd/init.go -------------------------------------------------------------------------------- /cmd/remotehelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/cmd/remotehelper.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/cmd/shared.go -------------------------------------------------------------------------------- /cmd/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/cmd/team.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/whoami.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/cmd/whoami.go -------------------------------------------------------------------------------- /constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/constants/constants.go -------------------------------------------------------------------------------- /dgit-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/dgit-black.png -------------------------------------------------------------------------------- /git-remote-dg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | git-dg remote-helper $@ 4 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/go.sum -------------------------------------------------------------------------------- /initializer/initializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/initializer/initializer.go -------------------------------------------------------------------------------- /keyring/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/keyring/keyring.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/main.go -------------------------------------------------------------------------------- /msg/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/msg/messages.go -------------------------------------------------------------------------------- /msg/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/msg/parse.go -------------------------------------------------------------------------------- /remotehelper/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/remotehelper/runner.go -------------------------------------------------------------------------------- /remotehelper/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/remotehelper/runner_test.go -------------------------------------------------------------------------------- /storage/chaintree/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/chaintree/object.go -------------------------------------------------------------------------------- /storage/chaintree/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/chaintree/reference.go -------------------------------------------------------------------------------- /storage/chaintree/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/chaintree/storage.go -------------------------------------------------------------------------------- /storage/chaintree/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/chaintree/storage_test.go -------------------------------------------------------------------------------- /storage/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/config.go -------------------------------------------------------------------------------- /storage/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/object.go -------------------------------------------------------------------------------- /storage/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/object_test.go -------------------------------------------------------------------------------- /storage/objiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/objiter.go -------------------------------------------------------------------------------- /storage/readonly/readonly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/readonly/readonly.go -------------------------------------------------------------------------------- /storage/readonly/readonly_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/readonly/readonly_test.go -------------------------------------------------------------------------------- /storage/siaskynet/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/siaskynet/net.go -------------------------------------------------------------------------------- /storage/siaskynet/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/siaskynet/object.go -------------------------------------------------------------------------------- /storage/split/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/split/split.go -------------------------------------------------------------------------------- /storage/split/split_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/storage/split/split_test.go -------------------------------------------------------------------------------- /transport/dgit/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/transport/dgit/auth.go -------------------------------------------------------------------------------- /transport/dgit/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/transport/dgit/client.go -------------------------------------------------------------------------------- /transport/dgit/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/transport/dgit/loader.go -------------------------------------------------------------------------------- /transport/dgit/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/transport/dgit/repo.go -------------------------------------------------------------------------------- /tupelo/clientbuilder/clientbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/clientbuilder/clientbuilder.go -------------------------------------------------------------------------------- /tupelo/namedtree/namedtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/namedtree/namedtree.go -------------------------------------------------------------------------------- /tupelo/namedtree/namedtree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/namedtree/namedtree_test.go -------------------------------------------------------------------------------- /tupelo/repotree/repotree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/repotree/repotree.go -------------------------------------------------------------------------------- /tupelo/teamtree/member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/teamtree/member.go -------------------------------------------------------------------------------- /tupelo/teamtree/members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/teamtree/members.go -------------------------------------------------------------------------------- /tupelo/teamtree/teamtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/teamtree/teamtree.go -------------------------------------------------------------------------------- /tupelo/tree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/tree/tree.go -------------------------------------------------------------------------------- /tupelo/usertree/usertree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quorumcontrol/dgit/HEAD/tupelo/usertree/usertree.go --------------------------------------------------------------------------------