'git'에 해당되는 글 2건

git fetch --all
git reset --hard origin/master

 

반응형

'git' 카테고리의 다른 글

git 로그인 error  (0) 2021.04.22
블로그 이미지

visualp

c#, java

,

git 로그인 error

git 2021. 4. 22. 09:23
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은 로그인 되지만 commit이 안될 떄 해결 방법

 

 

 

 - git bash를 실행 합니다.

[명령어]

ssh-keygen -t rsa -b 4096 -C scormrte@gmail.com

Enter file in which to save the key <-- 엔터

Enter passphrase (empty for no passphrase): 암호 입력

Enter same passphrase again: 입력한 암호 재 입력

(입력한 암호는 intelij 에서 입력 해줘야 합니다. 반드시 기억 )

 

 

- c/users/visualp/.ssh/id_rsa 메모장으로 open

- 해당 키 값을 복사해서 github ssh keys에 등록 합니다.

- github 로그인 후 settings -> SSH and GPG keys 창으로 이동한다.

- new ssh key 를 클릭해서 key등록 합니다.

 

 

반응형

'git' 카테고리의 다른 글

로컬 내용을 remote branch에 덮어쓰기( fetch) 하기  (0) 2021.04.26
블로그 이미지

visualp

c#, java

,