Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正准备做一些远离工作的工作,但我有一个 git 问题。如果我进入我的项目并做一个
git pull
这会从服务器上删除所有分支还是仅删除当前分支?我认为只是当前的..我需要更新我所有的分支..
$ git pull --all
将拉所有远程分支,如果您已经有需要更新的本地分支,您可以考虑使用
$ git fetch --all