[Solved] Quick way to download everything from all branches I own (Github)

[ad_1]

the command to download all the content (branches, tags, remove deleted etc)

# fetch all the remote repo and 
# remove the deleted content (tags, branches with the --prune)
git fetch --all --prune

enter image description here

[ad_2]

solved Quick way to download everything from all branches I own (Github)