Git 保存用户名和密码
两种方式:
Git可以将用户名,密码和仓库链接保存在硬盘中,而不用在每次push的时候都输入密码。
保存密码到硬盘一条命令就可以
PHP Code复制内容到剪贴板
- git config credential.helper store
当git push的时候输入一次用户名和密码就会被记录
C# Code复制内容到剪贴板
- $ git config credential.helper store
- $ git push http://example.com/repo.git
- Username: <type your username>
- Password: <type your password>
- [several days later]
- $ git push http://example.com/repo.git
- [your credentials are used automatically]
如果担心密码是明文的:
C/C++ Code复制内容到剪贴板
- git config credential.helper 'cache --timeout=36000'
- //36000秒内不关机不用输入git密码
SSH 保存用户名和密码:
PHP Code复制内容到剪贴板
- ssh-keygen -t rsa
- cat ~/.ssh/id_rsa.pub | ssh {host}@{ip} 'cat>>.ssh/authorized_keys'