gitbook.liuhui998.com gitbook.liuhui998.com

gitbook.liuhui998.com

Git Community Book 中文版

Git Community Book 中文版. 欢迎你成为本书的一名读者. 这本书汇聚了Git社区的很多精华, 其目的就是帮助你尽快的掌握Git. 如果你觉得本书中的什么内容已经过时, 或者有改进建议; 那你可以点击这里: 如何参与. 如果你想彻底了解Git, 你可这从 介绍. 如果你只想知道怎么用, 那么可跳到 安装. 比较提交 - Git Diff. Git的撤消操作 - 重置, 签出 和 撤消. 查找问题的利器 - Git Bisect. 查找问题的利器 - Git Blame. This book is maintained by Scott Chacon, and hosting is donated by GitHub. Please email me at schacon@gmail.com. With patches, suggestions and comments.

http://gitbook.liuhui998.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR GITBOOK.LIUHUI998.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Wednesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.3 out of 5 with 6 reviews
5 star
3
4 star
0
3 star
1
2 star
0
1 star
2

Hey there! Start your review of gitbook.liuhui998.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.2 seconds

CONTACTS AT GITBOOK.LIUHUI998.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Git Community Book 中文版 | gitbook.liuhui998.com Reviews
<META>
DESCRIPTION
Git Community Book 中文版. 欢迎你成为本书的一名读者. 这本书汇聚了Git社区的很多精华, 其目的就是帮助你尽快的掌握Git. 如果你觉得本书中的什么内容已经过时, 或者有改进建议; 那你可以点击这里: 如何参与. 如果你想彻底了解Git, 你可这从 介绍. 如果你只想知道怎么用, 那么可跳到 安装. 比较提交 - Git Diff. Git的撤消操作 - 重置, 签出 和 撤消. 查找问题的利器 - Git Bisect. 查找问题的利器 - Git Blame. This book is maintained by Scott Chacon, and hosting is donated by GitHub. Please email me at schacon@gmail.com. With patches, suggestions and comments.
<META>
KEYWORDS
1 about git
2 documentation
3 download
4 related tools
5 wiki
6 也可以直接和 译者
7 点击 这里
8 最新中文版pdf
9 新手指南
10 欢迎使用git
CONTENT
Page content here
KEYWORDS ON
PAGE
about git,documentation,download,related tools,wiki,也可以直接和 译者,点击 这里,最新中文版pdf,新手指南,欢迎使用git,git对象模型,git目录 与 工作目录,git索引,安装git,安装与初始化,3 基本用法,获得一个git仓库,正常的工作流程,分支与合并@基础,查看历史 git日志,分布式的工作流程,git标签,4 中级技能,忽略某些文件,rebase,交互式rebase,交互式添加,git树名,追踪分支,使用git grep进行搜索
SERVER
nginx/1.12.2
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Git Community Book 中文版 | gitbook.liuhui998.com Reviews

https://gitbook.liuhui998.com

Git Community Book 中文版. 欢迎你成为本书的一名读者. 这本书汇聚了Git社区的很多精华, 其目的就是帮助你尽快的掌握Git. 如果你觉得本书中的什么内容已经过时, 或者有改进建议; 那你可以点击这里: 如何参与. 如果你想彻底了解Git, 你可这从 介绍. 如果你只想知道怎么用, 那么可跳到 安装. 比较提交 - Git Diff. Git的撤消操作 - 重置, 签出 和 撤消. 查找问题的利器 - Git Bisect. 查找问题的利器 - Git Blame. This book is maintained by Scott Chacon, and hosting is donated by GitHub. Please email me at schacon@gmail.com. With patches, suggestions and comments.

INTERNAL PAGES

gitbook.liuhui998.com gitbook.liuhui998.com
1

Git Book 中文版 - Git索引

http://gitbook.liuhui998.com/1_4.html

Git Community Book 中文版. Git索引是一个在你的工作目录和项目仓库间的暂存区(staging area). 有了它, 你可以把许多内容的修改一起提交(commit). 如果你创建了一个提交(commit), 那么提交的是当前索引(index)里的内容, 而不是工作目录中的内容. 命令是查看索引内容的最简单办法. 你运行 git status命令, 就可以看到: 哪些文件被暂存了(就是在你的Git索引中), 哪些文件被修改了但是没有暂存, 还有哪些文件没有被跟踪(untracked). 如果完全掌握了索引(index), 你就一般不会丢失任何信息, 只要你记得名字描述信息(name of the tree that it described)就能把它们找回来. 同时, 你最好能对Git一些基本功能的运作原理, 和它与其它版本控制系统的区别有一个清晰的理解. 如果你在这一章没有完全理解, 我们会在后面的章节重新回顾这些主题. 好了, 下面我们要去了解如何安装, 配置和使用Git. Please email me at schacon@gmail.com.

2

Git Book 中文版 - 安装Git

http://gitbook.liuhui998.com/2_1.html

Git Community Book 中文版. 如果你在一个其基于Unix的系统中,你可以从Git的官网上 Git Download Page. Make prefix=/usr all ;# as yourself $ make prefix=/usr install ;# 以root权限运行. 如果你用的是Linux,你可以用你的本地包管理系统(native package management system)来安装. Yum install git-core #译者注,在redhat等系统下用yum $ apt-get install git-core #译者注,在debian, ubuntu等系统下用apt-get. 如果你用上面的命令不起作用的话,你可以从下面两个站点下载 .deb 或 .rpm 包:. 如果你在Linux兴趣从源代码开始安装的话,下面的这篇文章也许对你有帮助: Article: Installing Git on Ubuntu. 在Mac10.4和 10.5,如果你安装了MacPorts,你可以通过 MacPorts. 如果你没有安装MacPort, 你可以从 这里.

3

Git Book 中文版 - rebase

http://gitbook.liuhui998.com/4_2.html

Git Community Book 中文版. Git checkout -b mywork origin. Vi file.txt $ git commit $ vi otherfile.txt $ git commit . Git checkout mywork $ git rebase origin. 这些命令会把你的"mywork"分支里的每个提交(commit)取消掉,并且把它们临时 保存为补丁(patch)(这些补丁放到".git/rebase"目录中),然后把"mywork"分支更新 到最新的"origin"分支,最后把保存的这些补丁应用到"mywork"分支上。 如果运行垃圾收集命令(pruning garbage collection), 这些被丢弃的提交就会删除. 请查看 git gc. 在rebase的过程中,也许会出现冲突(conflict). 在这种情况,Git会停止rebase并会让你去解决 冲突 在解决完冲突后,用"git-add"命令去更新这些内容的索引(index), 然后,你无需执行 git-commit,只要执行:. Git rebase - continue.

4

Git Book 中文版 - 忽略某些文件

http://gitbook.liuhui998.com/4_1.html

Git Community Book 中文版. 但是这样会很快变成一件烦人的事,你发现 项目中到处有未追踪(untracked)的文件; 这样也使". 以'#' 开始的行,被视为注释. # 忽略掉所有文件名是 foo.txt 的文件. foo.txt # 忽略所有生成的 html 文件, *.html # foo.html是手工维护的,所以例外! Foohtml # 忽略所有.o 和 .a文件. *.[oa]. 查看一下详细的语法解释. 你也可以把".gitignore" 这个文件放到工作树(working tree)里的其它目录中,这就会在它和它的子目录起忽略(ignore) 指定文件的作用。 Git add .gitignore. 等命令), 这样项目里的其它开发者也能共享同一套忽略 文件规则。 如果你想忽略规则只对特定的仓库起作用,你可以把这些忽略规则写到你的仓库下 .git/info/exclude文件中,或是写在Git配置变量. This book is maintained by Scott Chacon, and hosting is donated by GitHub.

5

Git Book 中文版 - 分支与合并@基础

http://gitbook.liuhui998.com/3_3.html

Git Community Book 中文版. Experimental 分支是你刚才创建的, master 分支是Git系统默认创建的主分支。 切换到 experimental 分支,先编辑里面的一个文件,再提交(commit)改动,最后切换回 master 分支。 Edit file) $ git commit -a $ git checkout master. 你现在可以看一下你原来在 experimental 分支下所作的修改还在不在 因为你现在切换回了 master 分支,所以原来那些修改就不存在了。 Edit file) $ git commit -a. 这时,两个分支就有了各自不同的修改(diverged) 我们可以通过下面的命令来合并 experimental 和 master 两个分支:. Git branch -d experimental. Git branch -d只能删除那些已经被当前分支的合并的分支. 如果你要强制删除某个分支的话就用git branch D 下面假设你要强制删除一个叫 crazy-idea 的分支. Git branch -D crazy-idea.

UPGRADE TO PREMIUM TO VIEW 15 MORE

TOTAL PAGES IN THIS WEBSITE

20

LINKS TO THIS WEBSITE

groovylang.com groovylang.com

你的第一篇博客

http://www.groovylang.com/2012/new-born.html

本文位于 posts/first-blog.md , 你可以任何删掉,修改这个文件. Date为自动生成, 当然,你可以修改,这是你的自由. Categories 就是分类, 可以多个. Gor compile #编译 gor http. 然后打开你的浏览器,访问 http:/ 127.0.0.1:8080. 新建一个库 username.github.com 即你的用户名命名的地址. 将compiled目录,作为根路径,提交上去github.com上. 稍等几分钟, 你即可通过 http:/ username.github.com. Git clone git:/ github.com/wendal/wendal.net.git git add -A git commit -m . git pull git push. 用gor编写博客将会是一件很开心的事,如果有任何意见或建议,欢迎到 gor的官网. Blog comments powered by Disqus. John Dong 2013 with help from Gor. And Idea from ruhoh.

midashuang.wordpress.com midashuang.wordpress.com

一月 | 2011 | MidasHuang's Blog

https://midashuang.wordpress.com/2011/01

Just another WordPress.com site. 一月 31, 2011. 於 10:01 下午 由 midashuang. Identifying the Switch's Proper Baud Rate Settings – Cisco Systems. 一月 30, 2011. 於 4:13 下午 由 midashuang. 可以輸入指令 tail -f /var/log/apache2/error.log 觀看log檔. 另外一部分可輸入指令 php ./xxx.php(測試的檔案). 一月 26, 2011. 於 10:01 下午 由 midashuang. Lzy's 543: 用 screen irssi 上 irc 之鄉民版教學 (含Q&A). 一月 24, 2011. 於 10:01 下午 由 midashuang. 利用CodeIgniter建立簡單的MVC架構範例 @ mr.mu設計工作室. 一月 23, 2011. 於 1:09 下午 由 midashuang. 搜尋套件: brew search [keyword]. 如 brew install tmux.

midashuang.wordpress.com midashuang.wordpress.com

MidasHuang's Blog | Just another WordPress.com site | 2 頁

https://midashuang.wordpress.com/page/2

Just another WordPress.com site. 一月 26, 2011. 於 10:01 下午 由 midashuang. Lzy's 543: 用 screen irssi 上 irc 之鄉民版教學 (含Q&A). 一月 24, 2011. 於 10:01 下午 由 midashuang. 利用CodeIgniter建立簡單的MVC架構範例 @ mr.mu設計工作室. 一月 23, 2011. 於 1:09 下午 由 midashuang. Ruby -e “$(curl -fsSL https:/ gist.github.com/raw/323731/install homebrew.rb. 搜尋套件: brew search [keyword]. 查詢套件資訊: brew info [keyword]. 更新 Homebrew: brew update. 安裝套件: brew install [keyword]. 如 brew install tmux. 一月 19, 2011. 於 10:01 下午 由 midashuang. 一月 18, 2011. 一月 17, 2011.

linteng.wang linteng.wang

其他 - IT 三郎

http://www.linteng.wang/category/qt

三月 3, 2017. SocksCap64是由Taro Labs开发的一款免费的应用程序外壳代理软件. SocksCap64可以使Windows应用程序通过SOCKS代理服务器来访问网络而不需要对这些应用程序做任何修改, 即使某些本身不支持SOCKS代理的应用程序通过SocksCap64之后都可以完美的实现代理访问. 例如: Web Browsers, IM程序, FTP Clients, e-mail programs or games. Https:/ www.sockscap64.com/. Http:/ www.ccproxy.com/. 四月 9, 2016. 相当于 / data: {'str1':'foovalue', 'str2':'barvalue'},. 十月 19, 2015. 下载链接 http:/ pan.baidu.com/s/1pJGKWzh. 十月 12, 2015. LoadModule rewrite module modules/mod rewrite.so. 十月 11, 2015. 十月 10, 2015. 八月 15, 2015. 七月 11, 2015.

blog.cooer.net blog.cooer.net

Nodejs分享资源列表 | Deemstone's Blog

http://blog.cooer.net/2011/nodejs-resource

Subscribe to articles using RSS Feed. The Git Community Book http:/ book.git-scm.com/. Git Community Book 中文版 http:/ gitbook.liuhui998.com/. Pro Git http:/ progit.org/book/. 一个引导实验手册 中文 http:/ gitimmersion.googol.im. Github http:/ github.com. 安装 https:/ github.com/joyent/node/wiki/Installation. Npm: http:/ npmjs.org. 为什么Nodejs的并发性能高 http:/ cnodejs.org/blog/? CommonJS http:/ wiki.commonjs.org/wiki/CommonJS. 介绍CommonJS http:/ www.grati.org/? 译文 http:/ www.grati.org/? Redis http:/ redis.io. To post a comment.

liuhui998.com liuhui998.com

about - liuhui998's new blog

http://liuhui998.com/about

Git Community Book 中文版. 现居长沙 关注于: Linux, Git, MacOSX, Ruby On Rails, 等开源技术. 翻译了 Git Community Book中文版. 现在正在和一群伙伴在为: 领先的 iPad电子菜单 uMenu. 从 Wordpress Migrate 到 Octopress.

liuhui998.com liuhui998.com

2014/10/22 的祷告 - liuhui998's new blog

http://www.liuhui998.com/2014/10/22/2014-10-22-pray

Git Community Book 中文版. 从 Wordpress Migrate 到 Octopress.

liuhui998.com liuhui998.com

叫醒我的心 - liuhui998's new blog

http://www.liuhui998.com/2014/09/25/revive-my-heart

Git Community Book 中文版. A 箴十 4 手懶的,要受貧窮 手勤的,卻要富足。 A 箴十 5 夏天聚斂的,是智慧之子 收割時沈睡的, 是貽羞之子。 B 箴十 16 義人的勤勞致生 惡人的進項致死 死 原文是罪。 C 箴十二 11 耕種自己田地的,必得飽食 追隨虛浮的,卻是無知。 C 箴十三 11 不勞而得之財必然消耗 勤勞積蓄的,必見加增。 C 箴廿八 19 耕種自己田地的,必得飽食 追隨虛浮的,足受窮乏。 D 箴十二 24 慇勤人的手必掌權 懶惰的人必服苦。 E 箴廿二 29 你看見辦事慇勤的人嗎 他必站在君王面前,必不站在下賤人面前. BTW, 补一个 http:/ fcbcmemphis.org/SF/KEEPING%20BUSY%20(Chinese).htm , 以后有空看一下。 2014/10/22 的祷告 ». 从 Wordpress Migrate 到 Octopress.

liuhui998.com liuhui998.com

liuhui998's new blog

http://www.liuhui998.com/page/2

Git Community Book 中文版. 从 Wordpress Migrate 到 Octopress. 这支 convert 会根据原有的 wordpress 地址,来生成新的 octopress 文件。 Http:/ liuhui998.com/2010/09/26/msysgit windows copypaste. 2010-09-26-msysgit windows copypaste.textile. 在 wordpress 我把所有的文章内容全部导出到一个 xml 文件,然后上再用上面的 convert 进行处理,生成了一大堆的 .textile 文件 再把这些文件全部拷到. 更多 Read on →. 19章 30节, 20章 1 16节. Sì] 上午 9:00 11:00. Shēn] 下午 3:00 5:00. Yǒu] 下午 5:00 7:00. 8220;我在为谋生而工作,” 他说, “但这个工作太辛苦了。 最近春节在家一直想用 RoR 来折腾点东东出来,其间看到很多朋友在玩 octopress , 于是就想来玩一下 octopress。 Ruby 1.0 ur...

liuhui998.com liuhui998.com

在急难中的向上帝祷告 - liuhui998's new blog

http://www.liuhui998.com/2014/05/05/pray-to-god

Git Community Book 中文版. 从 Wordpress Migrate 到 Octopress.

UPGRADE TO PREMIUM TO VIEW 31 MORE

TOTAL LINKS TO THIS WEBSITE

41

OTHER SITES

gitblog.org gitblog.org

Blogone by gitblogorg

An open source blog, now using AngularJS. Social Media Developer Web Page Comparison. The inspiration for which sites to choose came from this.

gitbologna.it gitbologna.it

Gruppo Intervento Tattico - Bologna

I GIT (Gruppo Intervento Tattico). Il Gruppo Intervento Tattico è nato nel 2006. ASD Gruppo Intervento Tattico - Bologna - P.IVA 91267920378 - git.bologna@gmail.com – Webdesign Acme servizi s.r.l.

gitbone.com gitbone.com

Web hosting provider - Bluehost.com - domain hosting - PHP Hosting - cheap web hosting - Frontpage Hosting E-Commerce Web Hosting Bluehost

Web Hosting - courtesy of www.bluehost.com.

gitbook.com gitbook.com

GitBook · Documentation made easy

GitBook helps your team write, collaborate and publish content online. Sign up for GitBook. Over 200,000 people are already using GitBook. GitBook helps structure your workflow, securing access control and content review. Create your documents easily using our beautiful and powerful web or desktop editors. Never lose any of your data, all changes are backed up by modern version control. Get started with a beautiful template. Public books are always free. Join over 200,000 people.

gitbook.dpmb.org gitbook.dpmb.org

Introduction · Debian-Paketmanagement

Kann Paketmanagement Spaß machen? Wie und warum dieses Buch entstand. Dokumentation deb vs. rpm. Was ist das Buch und was nicht. Und das können Sie nach der Lektüre. Vom tar.gz zur Linux-Distribution. Welche UNIX-artigen Betriebssysteme verwenden das Paketformat und das APT-Paketmanagement. Software in Paketen organisieren. Varianten und Formate für Softwarepakete. Zusammenspiel von dpkg und APT. Vom monolithischen Programm zu Programmkomponenten. Sortierung der Pakete nach Verwendungszweck. Univention C...

gitbook.liuhui998.com gitbook.liuhui998.com

Git Community Book 中文版

Git Community Book 中文版. 欢迎你成为本书的一名读者. 这本书汇聚了Git社区的很多精华, 其目的就是帮助你尽快的掌握Git. 如果你觉得本书中的什么内容已经过时, 或者有改进建议; 那你可以点击这里: 如何参与. 如果你想彻底了解Git, 你可这从 介绍. 如果你只想知道怎么用, 那么可跳到 安装. 比较提交 - Git Diff. Git的撤消操作 - 重置, 签出 和 撤消. 查找问题的利器 - Git Bisect. 查找问题的利器 - Git Blame. This book is maintained by Scott Chacon, and hosting is donated by GitHub. Please email me at schacon@gmail.com. With patches, suggestions and comments.

gitbooking.com gitbooking.com

Home » GITBOOKING.COM

Welcome to GITBOOKING Platform. Our site is being developed at the moment. Please bookmark and return back from time to time for updates. Powered by F SOLUTIONS.

gitbooks.com gitbooks.com

gitbooks.com | Upstage

Gitbooks.com is for sale. Please make an offer.

gitboria.net gitboria.net

Gitboria.net

gitboria.org gitboria.org

Gitboria.org

gitboss.com gitboss.com

App_Name

The Git Boss is coming.