Git 保存用户名和密码
git 2017-08-09 09:15:01

两种方式:

 

Git可以将用户名,密码和仓库链接保存在硬盘中,而不用在每次push的时候都输入密码。

保存密码到硬盘一条命令就可以

PHP Code复制内容到剪贴板
  1. git config credential.helper store  

 

当git push的时候输入一次用户名和密码就会被记录

C# Code复制内容到剪贴板
  1. $ git config credential.helper store  
  2. $ git push http://example.com/repo.git  
  3. Username: <type your username>  
  4. Password: <type your password>  
  5.   
  6. [several days later]  
  7. $ git push http://example.com/repo.git  
  8. [your credentials are used automatically]  

 

如果担心密码是明文的:

C/C++ Code复制内容到剪贴板
  1. git config credential.helper 'cache --timeout=36000'  
  2. //36000秒内不关机不用输入git密码  

 

SSH 保存用户名和密码:

PHP Code复制内容到剪贴板
  1. ssh-keygen -t rsa  
  2. cat ~/.ssh/id_rsa.pub | ssh {host}@{ip} 'cat>>.ssh/authorized_keys'  

 

本文来自于:http://www.yoyo88.cn/study/git/129.html

上一篇 关于git回滚
Powered by yoyo苏ICP备15045725号