0

我想删除本地存储库中不存在的所有远程分支

我试过命令:

git push --prune origin

但我的 git 抱怨以下错误:

error: unknown option `prune'
usage: git push [<options>] [<repository> [<refspec>...]]

    -v, --verbose         be more verbose
    -q, --quiet           be more quiet
    --repo <repository>   repository
    --all                 push all refs
    --mirror              mirror all refs
    --delete              delete refs
    --tags                push tags (can't be used with --all or --mirror)
    -n, --dry-run         dry run
    --porcelain           machine-readable output
    -f, --force           force updates
    --thin                use thin pack
    --receive-pack <receive-pack>
                          receive pack program
    --exec <receive-pack>
                          receive pack program
    -u, --set-upstream    set upstream for git pull/status
    --progress            force progress reporting

为什么我的 git 没有--prune选项?

4

1 回答 1

3

--prune选项在 1.7.10 版本中被引入 git。您可能只是安装了旧版本。

作为参考,将1.7.9的文档与1.7.10的文档进行比较。

于 2013-01-08T12:22:52.647 回答