git命令设置

2018-06-18 00:48:43来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

初始化为git项目:

cd .../project  //切换到项目目录下

git init  //把project初始化为git项目

git remote add origin https://gitee.com/name/project.git  //设置远程项目地址

git remote set-url origin https://gitee.com/name/project.git  //修改远程项目地址

 

//克隆远程项目到当前目录下:

git clone https://gitee.com/name/project.git

 

设置全局用户属性

git config --global user.name "xxx"

git config --global user.email "xxx@xx.com"

设置局部项目用户属性,需要先切换到项目目录下 //如果没设置局部项目的用户属性则默认使用全局的用户属性

git config user.name "xxx"

git config user.email "xxx@xx.com"

根据上面可以发现,设置全局则需要在config后增加 --global,设置局部项目则不需要加

 

设置全局的git长期存储账号密码,如果不设置的话则每次与远程进行交互时都需要输入账号密码

git config --global credential.helper store

也可以设置账号密码有效时间(默认为15分钟)

git config --global credential.helper cache

自定义有效时间,设置有效时间为一小时
git config --global credential.helper cache 'cache --timeout=3600'

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Java开源生鲜电商平台-性能优化以及服务器优化的设计与架构(源码

下一篇:从构建分布式秒杀系统聊聊Disruptor高性能队列