欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Git
来自开放百科 - 灰狐
(版本间的差异)
小 (→图书) |
|||
(未显示1个用户的34个中间版本) | |||
第1行: | 第1行: | ||
+ | {{SeeWikipedia|Git (software)}} | ||
+ | |||
+ | [[Image:Git-90x90.gif|right]] | ||
+ | |||
Git 是 Linux Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。 | Git 是 Linux Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。 | ||
Torvalds 开始着手开发 Git 是为了作为一种过渡方案来替代 BitKeeper,后者之前一直是 Linux 内核开发人员在全球使用的主要源代码工具。开放源码社区中的有些人觉得 BitKeeper 的许可证并不适合开放源码社区的工作,因此 Torvalds 决定着手研究许可证更为灵活的版本控制系统。尽管最初 Git 的开发是为了辅助 Linux 内核开发的过程,但是我们已经发现在很多其他自由软件项目中也使用了 Git。例如,X.org 最近就迁移到 Git 上来了,很多 Freedesktop.org 的项目也迁移到了 Git 上。 | Torvalds 开始着手开发 Git 是为了作为一种过渡方案来替代 BitKeeper,后者之前一直是 Linux 内核开发人员在全球使用的主要源代码工具。开放源码社区中的有些人觉得 BitKeeper 的许可证并不适合开放源码社区的工作,因此 Torvalds 决定着手研究许可证更为灵活的版本控制系统。尽管最初 Git 的开发是为了辅助 Linux 内核开发的过程,但是我们已经发现在很多其他自由软件项目中也使用了 Git。例如,X.org 最近就迁移到 Git 上来了,很多 Freedesktop.org 的项目也迁移到了 Git 上。 | ||
− | |||
==Git与CVS的区别== | ==Git与CVS的区别== | ||
* 分支更快、更容易。 | * 分支更快、更容易。 | ||
第10行: | 第13行: | ||
* 没有哪一个 Git 仓库会天生比其他仓库更重要。 | * 没有哪一个 Git 仓库会天生比其他仓库更重要。 | ||
− | == | + | ==用法== |
+ | mkdir -p /home/git/project1 | ||
+ | cd /home/git/project1 | ||
+ | git init | ||
+ | git add . | ||
+ | git commit | ||
+ | chown -R root:www-data /home/git | ||
+ | git-daemon | ||
+ | grep 9418 /etc/services | ||
+ | git 9418/tcp # git pack transfer service | ||
+ | git 9418/udp # git pack transfer service | ||
+ | git-shell | ||
+ | |||
+ | ==OS X== | ||
+ | brew install git | ||
+ | brew upgrade git | ||
+ | |||
+ | ==Windows== | ||
+ | *[[msysgit]] | ||
+ | |||
+ | ==问题== | ||
+ | warning: CRLF will be replaced by LF 的处理 | ||
+ | |||
+ | *[https://help.github.com/articles/dealing-with-line-endings/ Dealing with line endings] | ||
+ | *[http://lexsheehan.blogspot.hk/2014/05/warning-crlf-will-be-replaced-by-lf-in.html warning: CRLF will be replaced by LF in .gitignore.] | ||
+ | |||
+ | ==文档== | ||
+ | *[http://docs.huihoo.com/javaone/2014/CON12388-Advanced-Git-and-GitHub.pdf Advanced Git and GitHub] | ||
+ | |||
+ | ==图书== | ||
+ | *[http://git-scm.com/book/zh/v1 《Pro Git》中文版] | ||
+ | *[https://cbx33.github.io/gitt/ Git In The Trenches] | ||
+ | |||
+ | ==图集== | ||
+ | <gallery widths=100px heights=100px perrow=6> | ||
+ | Image:Git-Architecture.png|Git Architecture | ||
+ | Image:git-add-and-git-commit.png|Add和Commit | ||
+ | Image:git-object-model.png|对象模型 | ||
+ | </gallery> | ||
+ | |||
+ | ==链接== | ||
*http://git.or.cz/ | *http://git.or.cz/ | ||
+ | *[http://code.google.com/p/git-osx-installer/ Git for OS X] | ||
*http://www.kernel.org/git/ | *http://www.kernel.org/git/ | ||
*http://www.kernel.org/pub/software/scm/git/docs/ | *http://www.kernel.org/pub/software/scm/git/docs/ | ||
− | * | + | *[http://www-128.ibm.com/developerworks/cn/linux/l-git/ 使用 Git 管理源代码] |
+ | *[http://www.juvenxu.com/2010/11/28/a-successful-git-branching-model/ 一个成功的Git分支模型] | ||
+ | *[http://blog.csdn.net/zhongguoren666/article/details/7297064 Git 中文教程] | ||
+ | *[https://github.com/ GitHub] | ||
*http://docs.huihoo.com/git/ | *http://docs.huihoo.com/git/ | ||
*http://download.huihoo.com/git/ | *http://download.huihoo.com/git/ | ||
+ | *[http://gitref.org/ Git Reference] | ||
+ | *[http://docs.huihoo.com/git/git-guide/index.zh.html git - 简易指南] | ||
+ | *[http://www.infoq.com/cn/articles/Gerrit-jenkins-hudson Git、Gerrit与Jenkins/Hudson CI服务器] | ||
+ | *[https://www.atlassian.com/git/ Getting Git Right] | ||
+ | *[http://blog.jobbole.com/85772/ Git 10 周年访谈:Linus 讲述背后故事] | ||
+ | *[http://learnxinyminutes.com/docs/zh-cn/git-cn/ Learn X in Y minutes, Where X=git] | ||
+ | |||
+ | {{comment}} | ||
− | [[ | + | [[category:revision control]] |
+ | [[category:software development]] | ||
+ | [[category:git]] |
2021年12月21日 (二) 04:19的最后版本
您可以在Wikipedia上了解到此条目的英文信息 Git Thanks, Wikipedia. |
Git 是 Linux Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。
Torvalds 开始着手开发 Git 是为了作为一种过渡方案来替代 BitKeeper,后者之前一直是 Linux 内核开发人员在全球使用的主要源代码工具。开放源码社区中的有些人觉得 BitKeeper 的许可证并不适合开放源码社区的工作,因此 Torvalds 决定着手研究许可证更为灵活的版本控制系统。尽管最初 Git 的开发是为了辅助 Linux 内核开发的过程,但是我们已经发现在很多其他自由软件项目中也使用了 Git。例如,X.org 最近就迁移到 Git 上来了,很多 Freedesktop.org 的项目也迁移到了 Git 上。
目录 |
[编辑] Git与CVS的区别
- 分支更快、更容易。
- 支持离线工作;本地提交可以稍后提交到服务器上。
- Git 提交都是原子的,且是整个项目范围的,而不像 CVS 中一样是对每个文件的。
- Git 中的每个工作树都包含一个具有完整项目历史的仓库。
- 没有哪一个 Git 仓库会天生比其他仓库更重要。
[编辑] 用法
mkdir -p /home/git/project1 cd /home/git/project1 git init git add . git commit chown -R root:www-data /home/git
git-daemon
grep 9418 /etc/services git 9418/tcp # git pack transfer service git 9418/udp # git pack transfer service
git-shell
[编辑] OS X
brew install git brew upgrade git
[编辑] Windows
[编辑] 问题
warning: CRLF will be replaced by LF 的处理
[编辑] 文档
[编辑] 图书
[编辑] 图集
[编辑] 链接
- http://git.or.cz/
- Git for OS X
- http://www.kernel.org/git/
- http://www.kernel.org/pub/software/scm/git/docs/
- 使用 Git 管理源代码
- 一个成功的Git分支模型
- Git 中文教程
- GitHub
- http://docs.huihoo.com/git/
- http://download.huihoo.com/git/
- Git Reference
- git - 简易指南
- Git、Gerrit与Jenkins/Hudson CI服务器
- Getting Git Right
- Git 10 周年访谈:Linus 讲述背后故事
- Learn X in Y minutes, Where X=git
<discussion>characters_max=300</discussion>
分享您的观点