728x90

계정 생성 및 등록 후 사용법

  1. 해당 github 주소에 가서 ssh의 url 복사
  2. remote add
  3. git push

 

1.해당 github 주소에 가서 ssh의 url 복사

 

 

2.remote 등록

git remote add [해당 SSH URL 주소]
ex)
git remote add git@github.com:zesinc/gycityjob.git

 

 

 

3.git push

새로생성한 remote명과 업로드할 해당 브랜치명을 push의 옵션으로 넣으면 된다

git push 새로생성한 remote명 브랜치명
ex)
git push originSSH develop

 

git bash에서 작업 내용

 

 

 

728x90
반응형

'Git & GitHub' 카테고리의 다른 글

[Git] Permission denied (publickey) 에러 해결  (0) 2023.06.03
[Git] git merge 정리  (0) 2023.04.15
[Git] git clean 정리  (0) 2023.03.25
[Git] Working Directory, Staging Area, Repository 개념  (0) 2023.03.18
[Git] git rm 정리  (0) 2023.03.12
728x90

 

사용 프로그램 & 버젼 등 환경

git bash 

win10

 

에러메세지

Permission denied (publickey)

git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

 

상황

git clone할려고 하니 발생

 

원인

github 개인계정과 회사계정 동시에 쓰기 때문에 ssh설정이 필요한 상태였음

 

 

해결

  1. ssh키 새로 만들기
  2. git 사용자로 연결하기

모든 연결은 github 사용자 이름이 아닌 git사용자로 이루어져야함

// ssh-keygen -t rsa -C "계정 메일주소" // 계정 등록

// 계정 등록 이후, git 사용자 연결 설정
$ ssh -T git@github.com

 

아래와 같은 메세지를 볼 수 있다

 

참고자료

https://docs.github.com/ko/authentication/troubleshooting-ssh/error-permission-denied-publickey

728x90
반응형

'Git & GitHub' 카테고리의 다른 글

[Git] git SSH 설정 후 사용법  (0) 2023.06.30
[Git] git merge 정리  (0) 2023.04.15
[Git] git clean 정리  (0) 2023.03.25
[Git] Working Directory, Staging Area, Repository 개념  (0) 2023.03.18
[Git] git rm 정리  (0) 2023.03.12

+ Recent posts