command line을 통해 git으로 소스를 떙겨와야 할 경우가 있다.
서버에서 직접 당긴다거나할때..
뭐 여튼.. 이렇게 command line으로 당겨오면.. 비밀번호를 물어본다.
> git config credential.helper store
> git -c credential.helper='!f(){ echo "password=${MyPassword}"; }; f' fetch origin
위와 같이 등록해두면, 나중에 서버에서 git으로 소스 당겨갈 떄, git pull<< 이렇게만 입력해도 된다.
반응형
댓글