'git branch -av' показывает удаленную ветку, которая больше не существует

Вероятно, это глупый вопрос, но я новичок в git и вижу удаленную ветку, которой больше не существует.

$ git branch -a
* master
  remotes/origin/master
  remotes/origin/production

Я не верю, что производственная ветка существует удаленно, и не могу понять, почему она все еще отображается локально. Как я могу удалить / удалить эту ветку? Вот как выглядит попытка удалить это:

$ git push origin :production

error: unable to push to unqualified destination: production
The destination refspec neither matches an existing ref on the remote nor
begins with refs/, and we are unable to guess a prefix based on the source ref.
error: failed to push some refs to 'git@IP:puppet.git'

Я могу проверить предположительно удаленную производственную ветвь, но получаю следующее:

$ git checkout origin/production
Note: checking out 'origin/production'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b new_branch_name

HEAD is now at c323996... added powerdns module, no really

Я понятия не имею, что, черт возьми, я делаю. Любая помощь будет оценена по достоинству.

157
задан Shahbaz 7 January 2012 в 02:02
поделиться