Skip to main content

Command Palette

Search for a command to run...

Git pull all branches

Updated
1 min read

Git pull downloads the master branch only. To download all branches from the remote repo, simply add --all like so

git pull --all

# Other useful options

# List all branches on remote
git branch -r

# fetch all branches
git fetch --all