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 fetch -p会被修剪。
git fetch -p
大多数 git 命令通常都有-nor--dry-run标志。他们向您展示了他们将要做什么,而没有实际去做。
-n
--dry-run
--dry-run 显示将要做什么,而不做任何更改。
显示将要做什么,而不做任何更改。