├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md └── bin └── git-sync-mirror.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enteee/git-sync-mirror/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enteee/git-sync-mirror/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enteee/git-sync-mirror/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enteee/git-sync-mirror/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enteee/git-sync-mirror/HEAD/README.md -------------------------------------------------------------------------------- /bin/git-sync-mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enteee/git-sync-mirror/HEAD/bin/git-sync-mirror.sh --------------------------------------------------------------------------------