# Git pull all branches

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

```bash
git pull --all

# Other useful options

# List all branches on remote
git branch -r

# fetch all branches
git fetch --all
```
