중간에 리파짓토리 이름을 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
성공! 깃에 가서 확인하면
'검색용 개발 블로그' 카테고리의 다른 글
the jar file has no source attachment (0) | 2021.09.14 |
---|---|
`eslint 'component/**/*' 'pages/**/*' 'payload/**/*' '*.ts' --fix` (0) | 2021.09.11 |
okhttp (0) | 2021.09.10 |
[javascirpt] object ==, === 비교 (0) | 2021.09.07 |
error Unexpected token < in JSON at position 0 while parsing near '<!DOCTYPE html> (0) | 2021.09.05 |