728x90
git init을 통해서 .git 폴더를 만들고 초기화까지 했습니다.
$ git init
그리고 나서 순차적으로 git에 레포지터리를 push 하는 과정까지 진행했습니다.
$ git add .
$ git commit -m "first commit"
$ git branch -M main
$ git remote origin add https://github.com/<id>/<project name>.git
$ git push -u origin main
하지만 git push 과정에서 에러가 발생하였습니다.
remote: Repository not found
fatal: repository '<project name>.git/' not found
다음의 블로그에서 해결책을 얻었습니다.
A 라는 github 아이디로 '최초' 글로벌 유저 등록을 했고, 나중에 B 라는 아이디로 다시 글로벌 유저를 등록해서 B 아이디로 push를 하려고 할때, 그 push의 시점은 여전히 A라는 github 아이디를 찾고 있었습니다.
git:https://github.com에서 편집을 눌러서 github 아이디와 비밀번호를 push 하려는 아이디로 바꿔주면 해결됩니다.
728x90
'Development > Git' 카테고리의 다른 글
[Git] Github Action (0) | 2021.03.13 |
---|---|
[Git] Gitflow (0) | 2021.02.25 |
[Git] Error - refusing to allow an OAuth App to create or update workflow `.github/workflows/deploy.yml` without `workflow` scope (0) | 2021.02.22 |
[Git] warning: LF will be replaced by CRLF in file (0) | 2021.02.21 |
[Git] .gitignore 와 .gitattributes 차이점 (0) | 2020.05.06 |