본문 바로가기

Backend/Utils

[gitHub] You are in 'detached HEAD' state.

반응형
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 switching back to a branch.

 

찾아보니 복구 후에 remote HEAD값과 local의 HEAD값이 안맞아서 그런것 같다.

맞춰주려 여러 시도를 해봤지만 실패해서 가장 깔끔하고 단순한 방법으로 진행했다.

## 현재 브런치 및 HEAD확인
git branch -a

## test브런치 생성
git checkout -b test

현재 branch를 확인해보고 새 branch를 만들어서 그곳에 push후 merge하는 방식이다.

반응형