본문 바로가기

검색용 개발 블로그

git repository 이름 변경 후 올리기

중간에 리파짓토리 이름을 2번이나 변경했다.

깃에 올릴려고하니 아무래도 에러가 날게 예상되었지만

부딪혀야지 암요암요

원래 하듯이 add, commit, push를 진행했다. 친절하게 이런 현상은 repository moved.  라고 깃이 알려주네!

 

 

 

 

This repository moved. Please use the new location:
이 경고문을 더 이상 보고 싶지 않다면
git remote set-url origin {new url}
예를 들면
git remote set-url origin https://github.com/some-user/new-url.git
과 같이 set-url 해주면 된다.

출처: https://solidw.github.io/devlog/2020/06/01/moved-repository/

 

PS D:\resume-nextjs> git remote set-url origin https://github.com/cutewonny/cutewonny.github.io.git
PS D:\resume-nextjs> git push origin master
Everything up-to-date

 

성공! 깃에 가서 확인하면

master에 push 성공!