Https方式使用[email protected]设置密码的方式

62561_silentboy

Zoker3 years ago member

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

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

git config --global credential.helper cache

如果想自己设置时间,可以这样做:

git config credential.helper ‘cache --timeout=3600‘

这样就设置一个小时之后失效

长期存储密码:

git config --global credential.helper store

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

http://yourname:[email protected]/name/project.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!

Donate:)

时间: 2024-10-05 04:20:01

Https方式使用[email protected]设置密码的方式的相关文章

https 方式使用[email protected]设置密码的方式

https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速 设置记住密码(默认15分钟): git config --global credential.helper cache 如果想自己设置失效时间,可以这样做: git config credential.helper 'cache --timeout=3600' 这样就设置一个小时之后失效 长期存储密码: git config --global credential.helper sto

注解方式传[email protected]

在SpringMVC中使用注解方式传List类型的参数时,要使用@RequestBody注解而不是@RequestParam注解 1 //创建文件夹 2 @RequestMapping(value="api/createFolders",method=RequestMethod.POST) 3 @ResponseBody 4 public ClientResponse<LinkedHashMap<String, BookFsApiJson>> createFol

[email&#160;protected]源代码管理使用日记【转】

转自:https://www.cnblogs.com/Juvy/p/3556902.html git的优势: 1 可以创建分支: 2 版本控制是基于每一次提交的,而不需要考虑每次提交了多少个文件. 下载: 下载网址为:http://git-scm.com/download,根据您的操作系统选择相应的安装宝,下载完后直接按照默认安装即可(本文讲述全部基于Windows操作系统). 概述: git源代码管理器的仓库位置可以基于本地服务器和远程服务器两种方式: 本地服务器主要用于管理自己的代码,将本机

Failed at the [email&#160;protected] preinstall script &#39;./scripts/download&#39; 设置linux proxy (代理)的方式

此问题发生的条件是: 用bitcore官方提供的方式在linux进行npm安装,报错: Downloading bitcoin: https://github.com/bitpay/bitcoin/releases/download/v0.12.1-bitcore-4/npm ERR! Linux 3.16.0-4-686-paenpm ERR! argv "/home/user/.nvm/versions/node/v4.6.0/bin/node" "/home/user/

[email&#160;protected]使用方式和之前版本的差异

2018年8月10号,vue-cli3.0面世 @2.9.3的使用1.下载vue-cli和安装项目cnpm i -g vue-cli#2.9.3 vue init webpack my-app @3.0以上,目前beta版本的使用1.下载vue-cli和安装项目npm install -g @vue/cli vue create <Project Name> //文件名 不支持驼峰(含大写字母) 全局安装过旧版本的 vue-cli(1.x 或 2.x)要先卸载它,否则跳过此步: npm uni

[Python] 发送email的几种方式

python发送email还是比较简单的,可以通过登录邮件服务来发送,linux下也可以使用调用sendmail命令来发送,还可以使用本地或者是远程的smtp服务来发送邮件,不管是单个,群发,还是抄送都比较容易实现. 先把几个最简单的发送邮件方式记录下,像html邮件,附件等也是支持的,需要时查文档即可 1 登录邮件服务 #!/usr/bin/env python # -*- coding: utf-8 -*- #python2.7x #send_simple_email_by_account.

解决docker下载[[email&#160;protected] var]# docker pull java Using default tag: latest Try镜像出现 error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net......: net/http: TLS handshake timeout的问题

[[email protected] var]# docker pull javaUsing default tag: latestTrying to pull repository docker.io/library/java ... latest: Pulling from docker.io/library/java5040bd298390: Pulling fs layer fce5728aad85: Pulling fs layer 76610ec20bf5: Waiting 6017

解决[email&#160;protected]每次提交需要输入用户名密码的问题

最近才折腾git,没有选用github,而是选用了国内的[email protected],没别的,骗了他们一顿匹萨吃,红薯不要打我. [email protected]有两种提交方式HTTPS与SHH,博主就是在建仓库的时候没有选择SSH而是选择了HTTPS,所以每次提交代码都得输入密码,挺闹心的,google一阵,发现解决办法: 1.在[email protected]的项目主页复制你的项目的ssh地址. 2.将这个地址贴在你的本地仓库的.git/config中 保存就ok了,so easy

git将本地代码 和服务器[email&#160;protected] 上的代码 关联

将本地代码 和服务器[email protected] 上的代码 关联 要使用git 首先,你得安装一个git 下载 http://git-scm.com/downloads 安装完成后,需要简单的配置一下,打开 Git Bash 填写用户名和邮箱,会出现在提交记录中,尽量和 [email protected] 中保持一致 git config --global user.name "你的名字" git config --global user.email "你的Email&