git config の 1 つのリモートの名前を から に変更したところlabee
、次のように表示EE
されました。git branch --all
* master
remotes/EE/master
remotes/labee/master
remotes/origin/HEAD -> origin/master
remotes/origin/grunt-3.0-stable
remotes/origin/master
次のコマンドを呼び出しました。
git prune
git fetch -p
しかし、どちらも役に立ちませんでした。私に何ができる?私の.git/config
は次のとおりです。
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = false
[remote "origin"]
url = https://github.com/gruntjs/grunt-contrib-watch.git
fetch = +refs/heads/*:refs/remotes/origin/*
pushurl = https://github.com/gruntjs/grunt-contrib-watch.git
gtPruneOnFetch = true
gtAlwaysFetchAllTags = true
[remote "EE"]
url = git@github.com:EE/grunt-contrib-watch.git
fetch = +refs/heads/*:refs/remotes/EE/*
[branch "master"]
remote = origin
merge = refs/heads/master
これは廃止されたブランチを求める質問の 1 つではないことに注意してください。存在しないリモートに関するものです。
私のgitバージョンは1.8.3.4 (Apple Git-47)
、OS X 10.9 Mavericksのデフォルトのものです。