[Só Faz] Git 오류: 오류: ref 'branch_a': 'branch_b'를 잠글 수 없습니다. 'branch_a'를 만들 수 없습니다.
"Só faz"são artigos que propõe as soluções mais rápidas, se você quer entender melhor, veja a seção "mais no bit"
Seu erro é parecido com esse?
error: cannot lock ref 'refs/remotes/origin/will_delete/feature': 'refs/remotes/origin/will_delete' exists; cannot create 'refs/remotes/origin/will_delete/feature'
From github.com:Rocketti/techcollege
! [new branch] will_delete/feature -> origin/will_delete/feature (unable to update local ref)
error: some local refs could not be updated; try running
'git remote prune origin' to remove any old, conflicting branches
Então 실행:
git fetch -p
ou
git remote prune origin
거의 없음:
A primeiro momento: crio a branch vindo da main, normal e dou um push para que vai para a origin.
git checkout -b will_delete
git push --set-upstream origin will_delete
github의 사이트가 아니라 지점에 있는 지점이 아니라 will_delete/feature를 제외하고 depois criar를 삭제할 수도 있습니다.
Qual seria o caminho normal? Ir para o terminal e dar o pull, porém olhe o erro:
품질 동기?
웹에서 will_delete/feature를 삭제하거나 will_delete를 localmente로 삭제하지 않고 will_delete를 로컬로 삭제하지 않고 프로세스를 처리하거나 git vai criar o fluxo para will_delete/feature를 will_delete할 수 없습니다.
코모 리졸버?
um dos dois comandos abaixo를 사용하십시오. Em ambos vão ativar o prune, aonde ele vai deletar localmente os repositórios que foram deletados da origin.
git fetch -p
ou
git remote prune origin
해결 방법, 빠른 속도 및 단순함.
Até a próxima galera!
Reference
이 문제에 관하여([Só Faz] Git 오류: 오류: ref 'branch_a': 'branch_b'를 잠글 수 없습니다. 'branch_a'를 만들 수 없습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/gdakuzak/so-faz-git-error-error-cannot-lock-ref-brancha-branchb-cannot-create-brancha-4j4f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)