Git免密访问
ssh方式
首先创建个人的ssh-key
ssh-keygen -t rsa
将~/.ssh/id_rsa.pub的内容配置到github或者gitee中即可
https方式
设置自动记住密码:
git config --global credential.helper store
若只在一个工程中记录密码,可以在工程目录下输入:
git config credential.helper store
然后执行git命令,输入一次账号密码即可
首先创建个人的ssh-key
ssh-keygen -t rsa
将~/.ssh/id_rsa.pub的内容配置到github或者gitee中即可
设置自动记住密码:
git config --global credential.helper store
若只在一个工程中记录密码,可以在工程目录下输入:
git config credential.helper store
然后执行git命令,输入一次账号密码即可