패스워드 기억
Git 커맨드 사용시 계속 패스워드를 물어보면 다음과 같이 패스워드를 파일로 기억하도록 하여 다시 묻지 않도록 설정할 수 있습니다.
Code Block | ||||
---|---|---|---|---|
| ||||
git config --global user.name 김병곤
git config --global user.email fharenheit@gmail.com
git config --global | ||||
Code Block | ||||
# vi ~/.gitconfig
[user]
name = 김병곤
email = architect@data-dynamics.io
# cd <GIT_PROJECT>
# git config credential.helper store |