私の状況はこれです...同じリポジトリで作業している誰かがローカルとリモートのリポジトリからブランチを削除しました...
Stack Overflowや他のサイトでこの種の問題について質問したほとんどの人git branch -a
は、下部のリモート追跡ブランチリストにブランチの問題がまだ表示されています。
* master
develop
feature_blah
remotes/origin/master
remotes/origin/develop
remotes/origin/feature_blah
remotes/origin/random_branch_I_want_deleted
しかし、私の状況では、そこにあるべきではないブランチはローカルです:
* master
develop
feature_blah
random_branch_I_want_deleted
remotes/origin/master
remotes/origin/develop
remotes/origin/feature_blah
次のいずれかを実行しても、ローカルで削除されません。
$ git prune
私も試しました:
$ git remote prune origin
$ git fetch --prune
より役立つ情報:チェックgit remote show origin
すると、次のようになります。
* remote origin
Fetch URL: utilities:homeconnections_ui.git
Push URL: utilities:homeconnections_ui.git
HEAD branch: master
Remote branches:
master tracked
develop tracked
feature_blah tracked
other123 tracked
other444 tracked
other999 tracked
Local branches configured for 'git pull':
develop merges with remote develop
feature_blah merges with remote other999
master merges with remote master
random_branch_I_want_deleted merges with remote random_branch_I_want_deleted
Local refs configured for 'git push':
develop pushes to develop (local out of date)
master pushes to master (up to date)
feature_blah pushes to feature_blah(up to date)
というタイトルのセクションにのみあることに注意してください Local branches configured for 'git pull':
どうして?
git branch -d the_local_branch