Pull upstream contents into a branch you are not currently on with:
git fetch <remote> otherbranch:otherbranchFor example, if you are on branch feature-a but your local master and
staging branches have fallen behind:
git fetch origin master:master staging:stagingAs a bonus tab-complete often works very well for this.
Courtesy of https://stackoverflow.com/a/55144971/4970