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


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

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