기타
git 로그인 설정 (계정 변경, 자동 로그인 설정)
현호s
2020. 6. 12. 13:26
반응형
# 로그인 계정 변경 및 자동로그인 설정
## 계정 변경
git config --global credential.helper manager
git credential-manager delete https://github.com
## 자동 로그인 설정
git config credential.helper store
git push http://github.com/아이디/저장소명.git
=> Everything up-to-date 문구 나오며 완료
반응형