最近买了本《version control with git》的动物书。给自己下了规定,一定要每天看一点。免得像之前的书一样,买了不怎么看,只是偶尔翻翻,有点浪费。目前看到DIFF这章。本章的结尾是比较了git 和 subversion的diff机制。于是想上网查一下具体git和subversion还有些什么比较大的区别。在GIT官方的WIKI上看到一下总结,简单翻译一下: Git is much faster than Subversion GIT比 SVN快 Subversion allows you to check out just a subtree of a repository; Git requires you to clone the entire repository (including history) and create a working copy that mirrors at least a subset of the items under version control. SVN允许从服务器拿库中的某个子目录;GIT要求你clone整个库。 [...]
All posts tagged git
GIT与Subversion的简单比较
Posted by Lu Jun on April 5, 2011
http://lujun.info/2011/04/git%e4%b8%8esubversion%e7%9a%84%e7%ae%80%e5%8d%95%e6%af%94%e8%be%83/
Gitosis: arguments to command look dangerous
If you get the following error when trying to execute git pull: “Arguments to command look dangerous”, then you might want to check whether the remote repository ends with a slash (/). This tripped me and a friend over the other day. Since gitosis is not very verbose with its error-messages, I had to dig [...]
Posted by Lu Jun on November 1, 2010
http://lujun.info/2010/11/gitosis-arguments-to-command-look-dangerous/