git pull --prune
, git fetch --prune
git pull --prune
やgit fetch --prune
を実行すると削除済みのリモートブランチの追跡ブランチを削除できます。
git pull --prune
git fetch --prune
常に--prune
する
git pull
やgit fetch
の際に常にprune
するには以下のコマンドを実行してGitの設定を追加します。
git config --global fetch.prune true
現在のリポジトリのみに設定するには以下のコマンドを実行します。
git config --local fetch.prune true