본문 바로가기

Tech

fatal: No configured push destination

안녕하세요 G1N4 입니다 :-)

 

push 하다가 맞닥뜨린 상황... 오랜만에 push 한 티가 이렇게 납니다

[발생상황]

$ git push
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using

    git remote add main https://github.com/<ID>/<Rrepository name>

and then push using the remote name

    git push main

밑에 친절하게 적혀진데로 따라 하면 됩니다만, 목록에 없는 <branch name> 입력 시 <new branch name>로 업로드되는 을 보실 수 있으니 확인 후 입력하는게 좋겠습니다... 저는 못 참고 merge해야 하는 성격이라 더욱이

[해결완]

$ git remote add origin https://github.com/<ID>/<Rrepository name>
$ git push --set-upstream origin main

이렇게 쉽게 될 줄 알았는데... 아니쥬 저처럼 다음 줄에  ! [rejected] main -> main (fetch first) 나왔다면 클릭!

그럼 다음 글에서 만나요 ;-)

 

 

[참조링크]

https://velog.io/@juho00ng/fatal-No-configured-push-destination