Never stop learning.
发布时间:2013-08-12 10:20:26
Gitolite是一款轻量级的Git服务管理工具。本文详细介绍了如何用Gitolite搭建自己的Git服务器。......【阅读全文】
发布时间:2013-08-06 13:51:26
Git命令之git branchBy Harrison Feng分支(branch)的概念 我们在学习git branch之前,首先要理解分支(branch)的概念。Git 中的分支,其实本质上仅仅是个指向 commit 对象的可变指针。Git 会使用 master 作为分支的默认名字。在若干次提交后,你其实已经有了一个指向最后一次提交对.........【阅读全文】
发布时间:2013-07-31 12:02:24
转载自:http://grokcode.com/792/deploy-with-git-push/Deploy with ‘Git Push’by Jess Johnson in Tips & TutorialsSingle command deploys are awesome. When setting up a testing or production server, I always setup a script to deploy in a single command because it makes life easier and .........【阅读全文】
发布时间:2013-07-19 13:51:16
今天我们来学习Git命令中最基本的命令git config。在正式学习这个命令之前,我们先来认识一下Git的三个最重要的配置文件,他们分别是/etc/gitconfig, ${HOME}/.gitconfig, .git/config。这三个配置文件都是Git运行时所需要读取的,但是它们分别作用于不同的范围。 /etc/gitconfig: 系统范围内的配置文.........【阅读全文】