git同时拉取更新所有远程分支


git pull origin master/git pull

只能更新当前所在分支

想要一次性更新仓库所有分支,可以

git pull --all

千万和

git pull -a

区分开

相关