利用SSH完成Git与GitHub的绑定
ssh-keygen -t rsa
~/.ssh/id_rsa.pub拷贝到GitHub网站的Profile-Settings-SSH and GPG keys-New SSH key中
ssh -T git@github.com
Q:如何避免每次push到github都要输用户名密码?
git config --global credential.helper store
将会记录下一次的用户名密码
利用SSH完成Git与GitHub的绑定
ssh-keygen -t rsa
~/.ssh/id_rsa.pub拷贝到GitHub网站的Profile-Settings-SSH and GPG keys-New SSH key中
ssh -T git@github.com
Q:如何避免每次push到github都要输用户名密码?
git config --global credential.helper store
将会记录下一次的用户名密码