git之https或http方式设置记住用户名和密码的方法

文章目录

    • 设置记住密码(默认15分钟):
    • 长期存储密码:
  • http/https方式:
    • 增加远程地址的时候带上密码也是可以的。(推荐)
    • 假如用户名和密码中包含了 @ ,即用户名为邮箱注册。
    • 如果你正在使用ssh而且想体验https带来的高速,那么你可以这样做: 切换到项目目录下 :

https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速

设置记住密码(默认15分钟):

git config --global credential.helper cache
如果想自己设置时间,可以这样做:

git config credential.helper ‘cache --timeout=3600’
这样就设置一个小时之后失效

长期存储密码:

git config --global credential.helper store

http/https方式:

增加远程地址的时候带上密码也是可以的。(推荐)

http://yourname:[email protected]/name/project.git
补充:使用客户端也可以存储密码的。

正常命令:
git clone https://xxx.xxx/hello.git

用户名:cstriker1407
密码:this_is_passwd
包含密码方式:git clone https:// cstriker1407:this_is_passwd@ xxx.xxx/hello.git
不包含密码方式:git clone https:// cstriker1407@ xxx.xxx/hello.git

假如用户名和密码中包含了 @ ,即用户名为邮箱注册。

由于git命令中已经包含了‘@’作为保留字符,这里需要转码
在线URL编解码:【 http://tool.chinaz.com/tools/urlencode.aspx 】

用户名:cstriker1407 @ yeah.net
转码后为:cstriker1407 %4 0 yeah.net
可以看到@被转码为了”%40″
不包含密码方式:git clone https:// cstriker1407%40yeah.net@ xxx.xxx/hello.git

如果你正在使用ssh而且想体验https带来的高速,那么你可以这样做: 切换到项目目录下 :

cd projectfile/
移除远程ssh方式的仓库地址

git remote rm origin
增加https远程仓库地址

git remote add origin http://yourname:[email protected]/name/project.git
搞定,enjoy the speed!
详见:http://git.oschina.net/oschina/git-osc/issues/2586

你可能感兴趣的:(Git,git,https,http,用户名密码)