Git password 및 token 저장
gitconfig--globaluser.nameuser.emailcredential.helperstore
1. 전역 정보 저장
git config --global user.name "이름"git config --global user.email "이메일"2. Disk에 정보 저장 하도록 설정
git config --global credential.helper store이후 로그인 시 로그인 정보를 저장하며 다음부터 묻지 않게 된다.