解决git的Enter passphrase for key '/c/Users/Administrator/.ssh/id_rsa'问题
·
我遭遇的问题是在git的bash上每次提交都弹出“Enter passphrase for key '/c/Users/Administrator/.ssh/id_rsa'”的提示,这个是访问远程仓库都需要输入一个密码,一般做法是输入密码就可以解决问题。但是想以后不用进行同样的操作,那么就需要进行以下的操作:
1、打git的bash命令,输入
vi ~/.profile
2、键盘输入"i",多行“~~~~~~”上面的插入以下的内容:
env=~/.ssh/agent.env agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; } agent_start () { (umask 077; ssh-agent >| "$env") . "$env" >| /dev/null ; } agent_load_env # agent_run_state: 0=agent running w/ key; 1=agent w/o key; 2= agent not running agent_run_state=$(ssh-add -l >| /dev/null 2>&1; echo $?) if [ ! "$SSH_AUTH_SOCK" ] || [ $agent_run_state = 2 ]; then agent_start ssh-add elif [ "$SSH_AUTH_SOCK" ] && [ $agent_run_state = 1 ]; then ssh-add fi unset env
3、按下“ESC”,在命令行下输入“:wq”。
根据以上的步骤即可不用每次都输入密码了。
更多推荐
已为社区贡献2条内容
所有评论(0)