git 用法总结A) git 配置初始化git根目录
在已有目录内部
cd git_root_dir
git init
在当前位置生成 git 根目录
git init git_root_dir
git 配置文件:~/.gitconfig 或者 git_root_dir/.git/config设置 core infogit config --global core.editor "v...
分类:
其他好文 时间:
2015-05-18 18:55:06
阅读次数:
111
保存在内存中 git config --global credential.helper cache git config --global credential.helper winstore .gitconfig 文件中加入以下内容 [credential]
helper = winstore ? 在项目的.git目录下config文件...
每次git clone 和push 都要输入用户名和密码。虽然安全,但在本机上每次都输有些麻烦,如何记住用户名和密码呢?当你配置好git后,在C:\Documents and Settings\Administrator\ 目录下有一个 .gitconfig 的文件,里面会有你先前配好的name 和...
分类:
其他好文 时间:
2015-05-17 10:44:43
阅读次数:
124
查看帮助,要装git-doc,另外推荐git的图形客户端gitg,比gitk好看多了,用apt-get install就可HEAD是当前工作版本的指针--global保存的是当前用户的配置,配置文件保存在~/.gitconfig--system是系统中所有用户,配置文件一般在/etc/gitconf...
分类:
其他好文 时间:
2015-05-13 12:04:38
阅读次数:
108
有时候,git使用的默认编辑器不是我们想要的编辑器,比如说我们在git commit没有指定-m参数的时候自动进入的编辑器界面。
此时我们在.gitconfig的[core]段中加上editor=vim会变成vim编辑器。...
分类:
其他好文 时间:
2015-05-09 16:30:21
阅读次数:
118
初始化配置#配置使用git仓库的人员姓名 gitconfig--globaluser.name"YourNameComesHere"#配置使用git仓库的人员email gitconfig--globaluser.emailyou@yourdomain.example.com #配置到缓存默认15分...
分类:
其他好文 时间:
2015-04-30 19:42:59
阅读次数:
100
1、安装GIT下载地址:http://git-scm.com/download,安装好GIT并设置环境变量,将C:\ProgramFiles(x86)\Git\bin放到系统变量中即可。2、设置初始化参数输入在命令行以下命令:gitconfig--globaluser.name="你的用户名"gitconfig--globaluser.email="邮箱地址"3、获取SSH公钥打开g..
分类:
系统相关 时间:
2015-04-29 19:58:07
阅读次数:
271
github使用心得:在本次github使用过程中,我总结了git常用命令,都有哪些功能?git常用命令:gitconfig:配置gitgitadd:更新workingdirectory中的文件至stagingarea。gitadd.更新所有的文件gitcommit:提交stagingarea中的文...
分类:
其他好文 时间:
2015-04-25 18:07:03
阅读次数:
144
1,/etc/gitconfig:[gui] encoding = utf-8 #代码库统一用urf-8,在git gui中可以正常显示中文[i18n] commitencoding = GB2312 #log编码,window下默认gb2312,声明后发到服务器才不会乱码[svn] ...
初始化配置C代码#配置使用git仓库的人员姓名gitconfig--globaluser.name"YourNameComesHere"#配置使用git仓库的人员emailgitconfig--globaluser.emailyou@yourdomain.example.com#配置到缓存默认15分...
分类:
其他好文 时间:
2015-04-15 18:39:39
阅读次数:
120