From 838273f0e7ff5b8ff2141e82fabee2b21695bd4f Mon Sep 17 00:00:00 2001 From: Hou Ken / Bao Qian Date: Mon, 11 Apr 2016 00:33:48 +0900 Subject: [PATCH 1/2] Add copyright info following geeeeeeeeek's instruction. --- sources/果壳中的Git.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sources/果壳中的Git.md b/sources/果壳中的Git.md index c4b3e4a..10728ad 100644 --- a/sources/果壳中的Git.md +++ b/sources/果壳中的Git.md @@ -1,5 +1,9 @@ # 什么是Git +> BY houkensjtu([houkensjtu@github](https://github.com/houkensjtu)) +> +> 这是一篇在[原文(BY atlassian)](https://www.atlassian.com/git/tutorials/git-log)基础上演绎的译文。除非另行注明,页面上所有内容采用知识共享-署名([CC BY 2.5 AU](http://creativecommons.org/licenses/by/2.5/au/deed.zh))协议共享。 + Git是目前世界上被最广泛使用的现代软件版本管理系统。Git本身亦是一个成熟并处于活跃开发状态的开源项目,它最初是由Linux操作系统内核的创造者Linus Torvalds在2005年创造。今天惊人数量的软件项目依赖Git进行版本管理,这些项目包括开源以及各种商业软件。Git在职业软件开发者中拥有良好的声誉,Git目前支持绝大多数的操作系统以及IDE(Integrated Development Environments)。 Git使用分散式架构,是分散式版本管理DVCS(Distributed Version Control System)的代表。相较于例如CVS或者Subversion等集中式版本管理软件,Git并不是将代码的所有修改历史保存在中心服务器中。在Git中取而代之的是,所有参与项目的开发者都拥有各自的代码完全拷贝,并在自己的拷贝上进行软件开发。 From 6ae82d81664a76f38d5a70b328818eb56c1034d9 Mon Sep 17 00:00:00 2001 From: Hou Ken / Bao Qian Date: Mon, 11 Apr 2016 12:57:48 +0900 Subject: [PATCH 2/2] Fixed origin article url. --- sources/果壳中的Git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/果壳中的Git.md b/sources/果壳中的Git.md index 10728ad..94cda76 100644 --- a/sources/果壳中的Git.md +++ b/sources/果壳中的Git.md @@ -2,7 +2,7 @@ > BY houkensjtu([houkensjtu@github](https://github.com/houkensjtu)) > -> 这是一篇在[原文(BY atlassian)](https://www.atlassian.com/git/tutorials/git-log)基础上演绎的译文。除非另行注明,页面上所有内容采用知识共享-署名([CC BY 2.5 AU](http://creativecommons.org/licenses/by/2.5/au/deed.zh))协议共享。 +> 这是一篇在[原文(BY atlassian)](https://www.atlassian.com/git/tutorials/what-is-git)基础上演绎的译文。除非另行注明,页面上所有内容采用知识共享-署名([CC BY 2.5 AU](http://creativecommons.org/licenses/by/2.5/au/deed.zh))协议共享。 Git是目前世界上被最广泛使用的现代软件版本管理系统。Git本身亦是一个成熟并处于活跃开发状态的开源项目,它最初是由Linux操作系统内核的创造者Linus Torvalds在2005年创造。今天惊人数量的软件项目依赖Git进行版本管理,这些项目包括开源以及各种商业软件。Git在职业软件开发者中拥有良好的声誉,Git目前支持绝大多数的操作系统以及IDE(Integrated Development Environments)。