├── .github └── workflows │ └── build.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── cmd └── git-backup │ └── main.go ├── config.go ├── docker-entrypoint.sh ├── github.go ├── gitlab.go ├── go.mod ├── go.sum ├── repository.go └── utils.go /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/README.md -------------------------------------------------------------------------------- /cmd/git-backup/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/cmd/git-backup/main.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/config.go -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/github.go -------------------------------------------------------------------------------- /gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/gitlab.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/go.sum -------------------------------------------------------------------------------- /repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/repository.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChappIO/git-backup/HEAD/utils.go --------------------------------------------------------------------------------