강
[Github]Git 내 컴퓨에 계정 등록 본문
해야하는 이유
- github에 push를 할때 username, password를 묻는데 계정을 등록하면 더이상 입력할 필요 없다.
- 계정 등록이 되어 있지 않은 상태에서 push를 하면 github에 잔디가 생성되지 않는다.
사용자, 이메일, 패스워드 등록
** 8월 부터 github에서 패스워드가 아닌 인증 토큰을 발급하여 인증하도록 하므로 password 자리에 인증토큰을 등록줍니다 **
git config --global user.name "github 닉네임"
git config --global user.email "github 이메일"
git config --global user.password "github 인증토큰"
인증 토큰 발급 방법은 아래 링크를 참조하시면 좋아요
https://manchann.tistory.com/9
입력한 정보 캐싱
git config credential.helper store
위 명령어를 입력하여 캐싱을 한 후 push/pull할 때에 인증없이 진행합니다.
** 만약 위 작업을 해주어도 git 작업시 여전히 계정을 물어본다면 아래의 커맨드를 추가적으로 입력합니다 git config --local user.name "github 닉네임" git config --local user.email "github 이메일" git config --local user.password "github 인증토큰"
저의 경우 AWS EC2 환경에서 위의 작업이 추가적으로 필요했습니다.
** 만약 위 작업을 해주어도 git 작업시 여전히 계정을 물어본다면 아래의 커맨드를 추가적으로 입력합니다 **
git config --local user.name "github 닉네임"
git config --local user.email "github 이메일"
git config --local user.password "github 인증토큰"
저의 경우 AWS EC2 환경에서 위의 작업이 추가적으로 필요했습니다.
'Github' 카테고리의 다른 글
[Github] 특정 폴더만 clone 받기 (3) | 2021.09.27 |
---|---|
[Git] Another git process seems to be running in this repository 에러 해결 (0) | 2021.09.14 |
[Github] 토큰 생성과 로그인 방법 (0) | 2021.08.24 |
Comments