├── .gitignore ├── README.md ├── config.py ├── download_exports.py ├── export_repos_urls.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | __pycache__/ 3 | backup/ 4 | repos.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkSuniuM/Gitlab-Backup/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkSuniuM/Gitlab-Backup/HEAD/config.py -------------------------------------------------------------------------------- /download_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkSuniuM/Gitlab-Backup/HEAD/download_exports.py -------------------------------------------------------------------------------- /export_repos_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkSuniuM/Gitlab-Backup/HEAD/export_repos_urls.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkSuniuM/Gitlab-Backup/HEAD/requirements.txt --------------------------------------------------------------------------------