서버에 git 비밀번호
비밀번호 저장
git config --global credential.helper cache
비밀번호 캐시저장 with 시간
git config --global credential.helper 'cache --timeout=3600'
명령어와 함께
git pull https://username:password@mygithost.com/my/repository
비밀번호 저장
git config --global credential.helper cache
비밀번호 캐시저장 with 시간
git config --global credential.helper 'cache --timeout=3600'
명령어와 함께
git pull https://username:password@mygithost.com/my/repository