UI部分Options->TextLocal:zh_CN,Character set:GBK~/.GitConfig[gui] encoding = utf-8[tgit] projectlanguage = 2052[credential] helper ...
一、git所有配置文件 、/etc/gitconfig全局配置文件 修改该配置文件,会对所有用户有影响。 使用git config --system来配置该文件 、~/.gitconfig当前用户配置文件 ~代表当前用户的家目录 使用git config --gl...
分类:
其他好文 时间:
2015-08-21 19:06:58
阅读次数:
132
1,/etc/gitconfig:[gui] encoding = utf-8 #代码库统一用urf-8,在git gui中可以正常显示中文[i18n] commitencoding = GB2312 #log编码,window下默认gb2312,声明后发到服务器才不会乱码[svn] ...
一、配置你的身份,提交代码时git就可以知道是谁提交的了git config --global user.name "Tony"git config --global user.email "tony@gmail.com"验证:使用gitconfig--global和gitconfig--globa...
分类:
其他好文 时间:
2015-08-06 14:59:34
阅读次数:
156
解决方法:打开git 终端#输入下面两句,并且替换成你的名字和邮箱gitconfig--globaluser.email"your@email.com"gitconfig--globaluser.name"YourName"输入如下指令:
分类:
其他好文 时间:
2015-08-06 13:01:56
阅读次数:
421
初始化配置#配置使用git仓库的人员姓名gitconfig--globaluser.name"YourNameComesHere"#配置使用git仓库的人员emailgitconfig--globaluser.emailyou@yourdomain.example.com#配置到缓存默认15分钟gi...
分类:
其他好文 时间:
2015-08-04 10:43:35
阅读次数:
128
初始化配置C代码#配置使用git仓库的人员姓名gitconfig--globaluser.name"YourNameComesHere"#配置使用git仓库的人员emailgitconfig--globaluser.emailyou@yourdomain.example.com#配置到缓存默认15分...
分类:
其他好文 时间:
2015-07-26 15:39:37
阅读次数:
204
GIT的使用 GIT 的常规操作常规操作也是我自己平时常用的几个命令, 学自于 pro git 这本书中git 配置文件git的配置文件位置针对所有用户:/etc/gitconfig针对当前用户: ~/.gitconfig查看配置的方法git config --list修改配置的方法git conf...
分类:
其他好文 时间:
2015-07-26 15:28:35
阅读次数:
72
gitinit#初始化
gitconfig--globaluser.name"mortal"
gitconfig--globaluser.email"mortal@gmail.com"
gitadd.#添加要提交的文件
gitcommit-m"initial"#提交一个版本
gitstatus#目前状态
gitdiff#可以比对文件
在git提交环节,存在三大部分:workingtree,indexfile,commit
wo..
分类:
其他好文 时间:
2015-07-24 18:45:55
阅读次数:
157
1.设置用户名邮箱 gitconfig--globaluser.name"baiwei.ji" gitconfig--globaluser.email"baiwei.ji@qunar.com" * 使用git config命令的--global参数,表示你这台机器上所有的Git仓库都会使用这个...
分类:
其他好文 时间:
2015-07-18 19:55:17
阅读次数:
194