Backup all repos from Github or Gitlab
- python3.7 or newer
- git
For Github, create config_github.py
with the following:
# your github username
GITHUB_USERNAME = 'username'
# long lived token with read access to all repos
AUTH_TOKEN = '<PUT TOKEN HERE>'
For Gitlab, create config_gitlab.py
with the following:
# hostname or ip address of your gitlab instance
GIT_HOST = 'git.example.com'
# long lived token
AUTH_TOKEN = '<PUT TOKEN HERE>'
Run either script like: python3 backup_github.py