没有“--prune”选项

时间:2013-01-08 12:20:08

标签: git github

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

我试过命令:

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选项??

1 个答案:

答案 0 :(得分:3)

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

供参考,请将1.7.9的文档与1.7.10的文档进行比较。