码迷,mamicode.com
首页 >  
搜索关键字:gitconfig    ( 252个结果
git 安装和配置(网络代理的设置)
安装 git sudo apt-get install git 查看git配置 git config --list 或者~/gedit .gitconfig git设置代理(一般用于公司内部网络,如果上网正常,不需要设置) git config --global http.proxy ip:port git用户名 git config --global user.name ...
分类:其他好文   时间:2015-04-14 16:44:49    阅读次数:178
git配置
1. 为git子命令设置别名编辑$HOME/.gitconfig[user] name = xxx email = xxx[alias] co = checkout ci = commit st = status br = branch2. tab键自动弹出git...
分类:其他好文   时间:2015-04-03 01:27:00    阅读次数:144
github for window的代理设置方法
修改 .gitconfig 文件,主要是针对http 和 https进行修改,设置代理[user] name = name email = mail@163.com[http] proxy = 134.32.32.87:808配置文件位置C:\Users\用户
分类:Windows程序   时间:2015-03-10 17:00:10    阅读次数:188
git基本命令
转自http://justcoding.iteye.com/blog/1830388初始化配置C代码#配置使用git仓库的人员姓名gitconfig--globaluser.name"YourNameComesHere"#配置使用git仓库的人员emailgitconfig--globaluser....
分类:其他好文   时间:2015-03-09 19:01:55    阅读次数:158
git初体验
一.创建版本库和第一次提交 首先先设置git的一些变量,这些变量将永久的存储在全局文件(主目录下的.gitconfig)或系统文件(etc/gitconfig)中。 1.配置用户名和邮件地址,这个在版本库提交时将用到,可以说是使用必须的一步。用以下命令配置。 git config --gl...
分类:其他好文   时间:2015-03-07 21:13:53    阅读次数:132
git 常用配置
配置文件位置: Linux: ~//gitconfig Windows: /etc/gitconfig1. git颜色配置git config --global color.diff autogit config --global color.status autogit config --gl.....
分类:其他好文   时间:2015-03-06 21:58:41    阅读次数:141
让TortoiseGit记住帐号密码方法
我的电脑环境是:Windows7 64x 系统用户名是:steden所以,我的路径是:C:\Users\steden\ 具体要根据你的系统环境及当前用户名来决定。在这里,有个文件:.gitconfig 用记事本打开。并在末尾加上:[credential] helper = store保...
分类:其他好文   时间:2015-03-04 20:45:29    阅读次数:148
.gitconfig的配置文件
[user] name=*** email=***@***.*** [core] editor=vim [color] status=auto branch=auto diff=auto ui=true pager=true [color"branch"] current=yellowreverse local=yellow remote=green [color"diff"] meta=yellowbold frag=magentabold old=redbold new=greenbold [color"..
分类:其他好文   时间:2015-02-14 01:18:56    阅读次数:356
关于TortoiseGit设置代理服务器会自动取消的问题解决方法
在前些日子,我使用TortoiseGit的并给其设置代理服务器的时候,每次设置好之后,关闭打开总是会自动取消勾选,通过不断的尝试和分析之后,得出了解决方案。首先,这个配置项是保存在HOME环境变量对应的目录下的.gitconfig文件中的,也就是说每次GIT启动都会去这里读取配置默认情况下我们的%H...
分类:其他好文   时间:2015-02-06 14:48:01    阅读次数:200
gitlab邮件配置
git+gitlab安装好后邮件默认发出地址是gitlab@localhost,此地址会被任何邮件服务商都拦截,且无法加入白名单。配置gitlab用smtp发送邮件(网上参考大多都不靠谱),最终测试以下三步就可以了:1.修改全局配置文件git/.gitconfig文件,这里的email是gitlab发送邮件的Email地址[u..
分类:其他好文   时间:2015-02-03 17:29:42    阅读次数:267
252条   上一页 1 ... 21 22 23 24 25 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!