multigit cloning for many different organization, branches, projects on github
.projects
file.branches
file.orgs
file listoptions:
.structure
file
git clone https://github.com/docutemp/templates.git
local
python3 -m venv path/to/venv
source path/to/venv/bin/activate
python3 -m pip install requests
python3 ./multigit.py ~/github
python update
sudo python3 -m pip install --upgrade pip
local
python3 -m venv path/to/venv
source path/to/venv/bin/activate
python3 -m pip install requests
init requirements
pip freeze > requirements.txt
install dependencies
pip install -r requirements.txt
clone
git clone https://github.com/multigit-com/python.git
configuration
chmod +x ./init.sh
./init.sh github-username
packages
python3 -m pip install requests # for Python 3.x
python3 splitup.py multigit.py function
python3 depend.py function
The script multigit.py executes a shell command (git clone
) for each repository. This command requires that you have git installed and properly configured on your system.
Please note that you should have appropriate permissions to clone the repositories that you’re trying to access, otherwise, you may run into authentication issues. Additionally, GitHub API tokens are sensitive and should be kept secure. If you accidentally expose your token, make sure to revoke it immediately and generate a new one.
.orgs
in the same directory as the script, containing a list of organization names, each on a new line..token
in the same directory as the script, containing your GitHub API tokenpython3 ./multigit.py ~/github
check list of folders (organizations) and included subfolders (projects)
cd ~/github
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c 'echo "{}: $(find "{}" -maxdepth 1 -mindepth 1 -type d | wc -l)"' \;
update_repo_on_github(api_token, org_name, repo_name, description, domain):
API documentation