Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chapter 2 section 1 #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* 1.3.3 志愿者 <!-- 帮助开发者维护社区、构建生态 -->
* 1.3.4 开源企业 <!-- 企业支持开源项目、探索商业化道路 -->
* 第二章:创建一个开源项目 <!-- 以 Github 为例 -->
* 2.1 版本控制工具选择 <!-- 介绍 Git、SVN -->
* [2.1 版本控制工具选择](chapter-2/2.1.md) <!-- 介绍 Git、SVN -->
* 2.2 代码托管平台选择 <!-- 介绍 Github、Bitbucket、Gitlab 、Gitee 等代码托管平台-->
* 2.3 创建项目
* 2.3.1 创建一个项目 <!-- 创建一个项目,以及一些注意事项-->
Expand Down
59 changes: 59 additions & 0 deletions chapter-2/2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# 版本控制工具选择

## 版本控制工具的历史

如果你到 Wikipedia 上的[版本控制软件比较][1]页面去看,会发现历史上有非常多的版本控制工具,不过对于目前这个时代的程序员,接触过的不多。

最为人所熟知的大概有以下几种:

- CVS : 仅保留维护,不增加新的功能
- Fossil: 活跃中
- Git : 活跃中
- Mercurial: 活跃中
- SVN:活跃中
- Team Foundation Server:活跃中

其他的服务在主流中使用的人并不多,我们就不在这里提了。如果你有兴趣,可以点击上面的链接,去了解其各自的历史。

## Git & SVN

历史上存在过的那么多种版本控制工具,时至今日,使用的比较多的也仅有 Git 和 SVN 了。

### Git

[Git][2] 是由 Linux Kernel 的开发者 Linus Torvalds 开发的一款开源软件。最早是为了解决 Linux Kernel 的全球维护的问题,开发出了这么一款分布式的版本控制工具。

### SVN

[SVN][3] 的全称为 Apache Subversion, 于 2009 年被 Apache 基金会收入旗下,并开始孵化,在2010年成为 Apache 基金会的顶级项目。
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
[SVN][3] 的全称为 Apache Subversion, 于 2009 年被 Apache 基金会收入旗下,并开始孵化,在2010年成为 Apache 基金会的顶级项目。
[SVN][3] 的全称为 Apache Subversion, 于 2009 年被 Apache 基金会收入旗下,并开始孵化,在 2010 年成为 Apache 基金会的顶级项目。


### Git 于 SVN 的对比

| 特性 | Git | SVN |
| --- | --- | ---|
| 版本库 | 无限个版本库| 一个中央版本库|
| 分支| 可以有无限制分支 | 不同的目录是不同的分支|
| 空间占用 | 小 | 大 |
| 权限管理 | 无严格的权限管理方案,仅可以划分不同的角色 | 支持严格的权限控制,可以对子目录进行权限限制|


## 如何选择

无论你使用哪一种版本控制的方案,只要能够满足你的需求,都是OK的。不过,如果你还没有选择,那么我向你推荐 Git 。Git 目前拥有两个大杀器: GitHub 和 Gitlab。
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
无论你使用哪一种版本控制的方案,只要能够满足你的需求,都是OK的。不过,如果你还没有选择,那么我向你推荐 Git 。Git 目前拥有两个大杀器: GitHub 和 Gitlab
无论你使用哪一种版本控制的方案,只要能够满足你的需求,都是 OK 的。不过,如果你还没有选择,那么我向你推荐 Git。Git 目前拥有两个大杀器:GitHub 和 GitLab


- Github 是目前最为活跃的 Git 社交平台,上面每天都有大量的开发者在沟通、开发、协作,也是目前比较受认可的开发平台。
- Gitlab 则是一个非常专业的 Git 在线管理工具,提供了 SaaS 服务和可私有部署的开源版本。
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Gitlab 则是一个非常专业的 Git 在线管理工具,提供了 SaaS 服务和可私有部署的开源版本。
- GitLab 则是一个非常专业的 Git 在线管理工具,提供了 SaaS 服务和可私有部署的开源版本。


## 一些学习资料

### Git

- Pro Git 2: https://git-scm.com/book/zh/v2

### SVN

- Version Control With Subversion: http://svnbook.red-bean.com/

[1]:https://zh.wikipedia.org/wiki/%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6%E8%BD%AF%E4%BB%B6%E6%AF%94%E8%BE%83
[2]:https://zh.wikipedia.org/wiki/Git
[3]:https://zh.wikipedia.org/wiki/Subversion