ローカル リポジトリに存在しないすべてのリモート ブランチを削除したいと思います。
コマンドを試しました:
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
ですか??