github 자동 로그인
git 리파지토리가 많다보니 하나씩 pull받는게 만만치 않다. 배치파일로 만들어 보자.
주의할점은 https로 클론받는게 아니라 sshkey를 이용해서 클론을 받을 예정임
https는 어떤 이유에서인지 잘 안되는경우가 많더라구요.
깃허브 데스크탑 설치
https://desktop.github.com/
ssh key 생성
C:\Program Files\Git\git-bash.exe
ssh-keygen.exe -t rsa
C:\Users\Administrator.ssh 폴더에 id_rsa id_rsa.pub 파일이 생성된다. (다른 유저를 사용중이면 C:\Users\UserName\.ssh)
깃 초기화
git config --global user.name "teamsmiley"
git config --global user.email "teamsmiley@gmail.com"
private repo 클론
git clone git@github.com:USER_NAME/GIT_NAME.git
배치파일로 매번 클릭의 수고를 덜자.
cd C:\Users\<your-id>\Desktop\Github\APP
git reset --hard
git pull