前面,我们通过对 alias.ci 等Git配置变量的设置为Git设置了命令别名。命令别名可以帮助用户解决从其他版本控制系统迁移到Git后的使用习惯问题。CVS和Subversion等在提交的时候,一般习惯使用 ci (check in)子命...
分类:
其他好文 时间:
2014-12-16 19:32:44
阅读次数:
219
git配置文件.gitconfig常用配置
[user]
name = lizhihong
email = lizhihong@szhyst.com
[color]
diff = auto
status = auto
branch = auto
ui = auto
[core]
editor = vim...
分类:
其他好文 时间:
2014-11-21 18:55:58
阅读次数:
222
最近开始搞开发了,公司用的版本管理是Git,在公司用mac电脑PhpStorm 和Git都是自动配置好的,回到家想用Windows 写的什么总是提示Git有问题。打开PhpStorm的时候提示git需要配置。在网上搜了很久都没有结果,还好最后研究出来了。首先需要安装windows下的Git版本,网上...
分类:
Web程序 时间:
2014-11-20 23:11:40
阅读次数:
195
0.准备工作0.1 git安装http://git-scm.com/download/图形客户端建议使用source tree,中文界面http://www.sourcetreeapp.com/0.3 git帮助信息git helpgit help 指令名称0.4 git配置显示配置信息git co...
分类:
其他好文 时间:
2014-11-20 14:53:51
阅读次数:
292
以Ubuntu为例:https://github.com/Fffm
1.申请github帐号
2,安装git:
sudo apt-get install git
sudo aot-get install git-core
3.配置git
a.配置全局变量 git config --global user.name yourg...
分类:
系统相关 时间:
2014-11-14 17:53:20
阅读次数:
323
Git配置 git config --global user.name "" git config --global user.email "" git config --global color.ui true git config --global alias.co checkout
git c...
分类:
其他好文 时间:
2014-11-11 14:14:52
阅读次数:
299
在intellij IDEA中 VCS——Import into Version Control——Create Git Repository——选择你的本地项目 然后cmd进入到你的项目根目录(需要把git配置到环境变量中) 依次输入以下命令: # 给项目设置远程远程仓库...
分类:
其他好文 时间:
2014-11-06 00:53:09
阅读次数:
219
作者:zhanhailiang 日期:2014-11-03
git包含三个配置文件:
/etc/gitconfig 文件:系统中对所有用户都普遍适用的配置。若使用git config 时用' –system'选项,读写的就是这个文件。
~/.gitconfig 文件:用户目录下的配置文件只适用于该用户。若使用git config 时用' –global'选项,读写的就是这个文...
分类:
其他好文 时间:
2014-11-03 22:38:34
阅读次数:
403
1、安装github sudo apt-get install git 配置github 1) git config --global user.name "name"git config --global user.email "email" 2)安装ssh sudo ap...
分类:
系统相关 时间:
2014-11-02 07:03:58
阅读次数:
238
GitHub具体教程Table of Contents1 Git具体教程1.1 Git简单介绍1.1.1 Git是何方神圣?1.1.2 重要的术语1.1.3 索引1.2 Git安装1.3 Git配置1.3.1 用户信息1.3.2 高亮显示1.3.3 忽略特定的文件1.3.4 使用.gitkeep来追...
分类:
其他好文 时间:
2014-10-13 14:42:19
阅读次数:
386