├── .gitignore ├── CLAUDE.md ├── COPYING ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README ├── README.md ├── Rakefile ├── TODO.markdown ├── assets ├── blueprint │ ├── ie.css │ ├── plugins │ │ └── fancy-type │ │ │ ├── readme.txt │ │ │ └── screen.css │ ├── print.css │ ├── screen.css │ └── src │ │ ├── forms.css │ │ ├── grid.css │ │ ├── grid.png │ │ ├── ie.css │ │ ├── print.css │ │ ├── reset.css │ │ └── typography.css ├── images │ ├── figure │ │ ├── model-dag.png │ │ ├── model-real.png │ │ ├── object-blob.png │ │ ├── object-commit.png │ │ ├── object-tag.png │ │ ├── object-tree.png │ │ ├── object_types.png │ │ ├── objects-example.png │ │ ├── pack-index.png │ │ ├── packfile-format.png │ │ ├── packfile-index.png │ │ ├── packfile-logic.png │ │ ├── rebase0.png │ │ ├── rebase1.png │ │ ├── rebase2.png │ │ ├── rebase3.png │ │ ├── rebase4.png │ │ └── rebase5.png │ ├── git-logo.png │ ├── github.png │ ├── header-book.gif │ ├── pdf.png │ ├── tar.png │ └── zip.png ├── javascripts │ ├── application.js │ ├── jquery-1.2.6.min.js │ └── jquery.corner.js └── stylesheets │ ├── mac_classic.css │ └── style.css ├── dailybuild.sh ├── layout ├── book_index_template.html ├── chapter_template.html ├── mac_classic.css ├── pdf_template.html └── second.css ├── onekey.sh ├── output └── .gitignore ├── script ├── html.rb ├── local.rb ├── merge.rb ├── myUpload.sh ├── pdf.rb ├── pdf1.rb ├── prince.rb ├── sitemap.rb └── upload.sh ├── text ├── .DS_Store ├── 01_Introduction │ ├── 00_Section_Introduction.markdown │ └── 0_ Introduction.markdown ├── 02_Git_Object_Db_Basics │ ├── 0_ Git_Object_Db_Basics.markdown │ ├── 1_Trees_and_Blobs.markdown │ ├── 2_Commits.markdown │ └── 3_Trust_and_Tags.markdown ├── 02a_Git_Directory_and_Working_Directory │ └── 0_ Git_Directory_and_Working_Directory.markdown ├── 03_The_Git_Index │ └── 0_ The_Git_Index.markdown ├── 05_Installing_Git │ ├── 00_Section.markdown │ ├── 0_Installing_Git.markdown │ ├── 0_Source.markdown │ ├── 1_Linux.markdown │ ├── 2_Mac_104.markdown │ ├── 3_Mac_105.markdown │ └── 4_Windows.markdown ├── 06_Setup_and_Initialization │ ├── 0_ Setup_and_Initialization.markdown │ └── 1_Git_Config.markdown ├── 06a_Getting_A_Repo │ ├── 00_Section_Basic_Usage.markdown │ └── 1_Getting_a_Git_Repo.markdown ├── 07_Normal_Workflow │ └── 0_ Normal_Workflow.markdown ├── 08_Basic_Branching_and_Merging │ └── 0_ Basic_Branching_and_Merging.markdown ├── 09_Reviewing_History_Git_Log │ └── 0_ Reviewing_History_Git_Log.markdown ├── 10_Comparing_Commits_Git_Diff │ └── 0_ Comparing_Commits_Git_Diff.markdown ├── 11_Distributed_Workflows_Clone_Fetch_Push │ └── 0_ Distributed_Workflows_Clone_Fetch_Push.markdown ├── 12_Git_Tag │ └── 0_ Git_Tag.markdown ├── 12a_Ignoring_Files │ ├── 00_Section_Intermediate_Usage.markdown │ └── 0_Ignoring_Files.markdown ├── 13_Rebasing │ └── 0_ Rebasing.markdown ├── 14_Interactive_Rebasing │ └── 0_ Interactive_Rebasing.markdown ├── 15_Interactive_Adding │ └── 0_ Interactive_Adding.markdown ├── 16_Stashing │ └── 0_ Stashing.markdown ├── 17_Git_Treeishes │ └── 0_ Git_Treeishes.markdown ├── 18_Tracking_Branches │ └── 0_ Tracking_Branches.markdown ├── 19_Finding_in_Git_Grep │ └── 0_ Finding_in_Git_Grep.markdown ├── 21_Redoing_Git_Reset_and_Revert │ └── 0_ Redoing_Git_Reset_and_Revert.markdown ├── 22_Maintaining_Git_Gc_Prune_Fsck │ └── 0_ Maintaining_Git_Gc_Prune_Fsck.markdown ├── 230_Setting_Up_A_Public_Repo_Git_Http_Ssh_Gitosis │ └── 0_ Setting_Up_A_Public_Repo.markdown ├── 23A_Setting_Up_Private_Repo │ └── 0_Setting_Up_Private_Repo.markdown ├── 24_Creating_New_Empty_Branches │ ├── 00_Section_Advanced_Git.markdown │ └── 0_ Creating_New_Empty_Branches.markdown ├── 25_Changing_Your_History │ └── 0_Changing_History.markdown ├── 26_Advanced_Branching_And_Merging │ ├── 0_Advanced_Branching_And_Merging.markdown │ └── 1_Advanced_Merging_Multiway_Merge_Subtree.markdown ├── 27_Finding_Issues_Git_Bisect │ └── 0_ Finding_Issues_Git_Bisect.markdown ├── 28_Finding_Issues_Git_Blame │ └── 0_ Finding_Issues_Git_Blame.markdown ├── 29_Git_and_Email_Am_Format_Patch │ └── 0_ Git_and_Email_Am_Format.markdown ├── 30_Customizing_Git_Git_Config │ └── 0_ Customizing_Git_Git_Config.markdown ├── 31_Git_Hooks │ └── 0_ Git_Hooks.markdown ├── 32_Git_Recovery_Corrupted_Objects │ └── 0_ Git_Recovery_Corrupted_Objects.markdown ├── 34_Git_Submodules │ └── 1_Submodules.markdown ├── 35_Git_on_Windows │ ├── 00_Section_Working_with_Git.markdown │ └── 0_ Git_on_Windows.markdown ├── 37_Deploying_with_Git │ └── 0_ Capistrano_and_Git.markdown ├── 38_Subversion_Integration │ └── 0_ Subversion_Integration.markdown ├── 39_SCM_Migration │ └── 0_Scm_Migration.markdown ├── 40_Graphical_Git_gitgui_gitk │ └── 0_ Graphical_Git_gitgui_gitk.markdown ├── 41_Hosting_Git_gitweb_repoorcz_github_gitorious │ └── 0_ Hosting_Git_gitweb_repoorcz_github.markdown ├── 42_Alternative_Uses_TicGit │ └── 0_ Alternative_Uses_ContentDistribution.markdown ├── 44_Scripting_and_Git │ └── 0_ Ruby_and_Git_grit.markdown ├── 47_Git_and_Editors_tm_eclipse_nb │ └── 0_ Git_and_Editors_tm_eclipse.markdown ├── 48_How_Git_Stores_Objects │ ├── 00_Section_Internals_and_Plumbing.markdown │ └── 0_ How_Git_Stores_Objects.markdown ├── 49_Browsing_Git_Objects │ └── 0_ Browsing_Git_Objects.markdown ├── 50_Git_References_updateref │ └── 0_ Git_References_updateref.markdown ├── 51_The_Git_Index_lsfiles │ └── 0_ The_Git_Index_lsfiles.markdown ├── 52_The_Packfile │ └── 0_The_Packfile.markdown ├── 53_Raw_Git_readtree_writetree_committree │ └── 0_ Raw_Git_readtree_writetree_committree.markdown ├── 54_Transfer_Protocols │ └── 0_Transfer_Protocols.markdown └── 55_Glossary │ └── 0_Glossary.markdown └── text_zh ├── .DS_Store ├── 01_Introduction ├── 00_Section_Introduction.markdown └── 0_ Introduction.markdown ├── 02_Git_Object_Db_Basics ├── 0_ Git_Object_Db_Basics.markdown ├── 1_Trees_and_Blobs.markdown ├── 2_Commits.markdown └── 3_Trust_and_Tags.markdown ├── 02a_Git_Directory_and_Working_Directory └── 0_ Git_Directory_and_Working_Directory.markdown ├── 03_The_Git_Index └── 0_ The_Git_Index.markdown ├── 05_Installing_Git ├── 00_Section.markdown ├── 0_Installing_Git.markdown ├── 0_Source.markdown ├── 1_Linux.markdown ├── 2_Mac_104.markdown ├── 3_Mac_105.markdown └── 4_Windows.markdown ├── 06_Setup_and_Initialization ├── 0_ Setup_and_Initialization.markdown └── 1_Git_Config.markdown ├── 06a_Getting_A_Repo ├── 00_Section_Basic_Usage.markdown └── 1_Getting_a_Git_Repo.markdown ├── 07_Normal_Workflow └── 0_ Normal_Workflow.markdown ├── 08_Basic_Branching_and_Merging └── 0_ Basic_Branching_and_Merging.markdown ├── 09_Reviewing_History_Git_Log └── 0_ Reviewing_History_Git_Log.markdown ├── 10_Comparing_Commits_Git_Diff └── 0_ Comparing_Commits_Git_Diff.markdown ├── 11_Distributed_Workflows_Clone_Fetch_Push └── 0_ Distributed_Workflows_Clone_Fetch_Push.markdown ├── 12_Git_Tag └── 0_ Git_Tag.markdown ├── 12a_Ignoring_Files ├── 00_Section_Intermediate_Usage.markdown └── 0_Ignoring_Files.markdown ├── 13_Rebasing └── 0_ Rebasing.markdown ├── 14_Interactive_Rebasing └── 0_ Interactive_Rebasing.markdown ├── 15_Interactive_Adding └── 0_ Interactive_Adding.markdown ├── 16_Stashing └── 0_ Stashing.markdown ├── 17_Git_Treeishes └── 0_ Git_Treeishes.markdown ├── 18_Tracking_Branches └── 0_ Tracking_Branches.markdown ├── 19_Finding_in_Git_Grep └── 0_ Finding_in_Git_Grep.markdown ├── 21_Redoing_Git_Reset_and_Revert └── 0_ Redoing_Git_Reset_and_Revert.markdown ├── 22_Maintaining_Git_Gc_Prune_Fsck └── 0_ Maintaining_Git_Gc_Prune_Fsck.markdown ├── 230_Setting_Up_A_Public_Repo_Git_Http_Ssh_Gitosis └── 0_ Setting_Up_A_Public_Repo.markdown ├── 23A_Setting_Up_Private_Repo └── 0_Setting_Up_Private_Repo.markdown ├── 24_Creating_New_Empty_Branches ├── 00_Section_Advanced_Git.markdown └── 0_ Creating_New_Empty_Branches.markdown ├── 25_Changing_Your_History └── 0_Changing_History.markdown ├── 26_Advanced_Branching_And_Merging ├── 0_Advanced_Branching_And_Merging.markdown └── 1_Advanced_Merging_Multiway_Merge_Subtree.markdown ├── 27_Finding_Issues_Git_Bisect └── 0_ Finding_Issues_Git_Bisect.markdown ├── 28_Finding_Issues_Git_Blame └── 0_ Finding_Issues_Git_Blame.markdown ├── 29_Git_and_Email_Am_Format_Patch └── 0_ Git_and_Email_Am_Format.markdown ├── 30_Customizing_Git_Git_Config └── 0_ Customizing_Git_Git_Config.markdown ├── 31_Git_Hooks └── 0_ Git_Hooks.markdown ├── 32_Git_Recovery_Corrupted_Objects └── 0_ Git_Recovery_Corrupted_Objects.markdown ├── 34_Git_Submodules └── 1_Submodules.markdown ├── 35_Git_on_Windows ├── 00_Section_Working_with_Git.markdown └── 0_ Git_on_Windows.markdown ├── 37_Deploying_with_Git └── 0_ Capistrano_and_Git.markdown ├── 38_Subversion_Integration └── 0_ Subversion_Integration.markdown ├── 39_SCM_Migration └── 0_Scm_Migration.markdown ├── 40_Graphical_Git_gitgui_gitk └── 0_ Graphical_Git_gitgui_gitk.markdown ├── 41_Hosting_Git_gitweb_repoorcz_github_gitorious └── 0_ Hosting_Git_gitweb_repoorcz_github.markdown ├── 42_Alternative_Uses_TicGit └── 0_ Alternative_Uses_ContentDistribution.markdown ├── 44_Scripting_and_Git └── 0_ Ruby_and_Git_grit.markdown ├── 47_Git_and_Editors_tm_eclipse_nb └── 0_ Git_and_Editors_tm_eclipse.markdown ├── 48_How_Git_Stores_Objects ├── 00_Section_Internals_and_Plumbing.markdown └── 0_ How_Git_Stores_Objects.markdown ├── 49_Browsing_Git_Objects └── 0_ Browsing_Git_Objects.markdown ├── 50_Git_References_updateref └── 0_ Git_References_updateref.markdown ├── 51_The_Git_Index_lsfiles └── 0_ The_Git_Index_lsfiles.markdown ├── 52_The_Packfile └── 0_The_Packfile.markdown ├── 53_Raw_Git_readtree_writetree_committree └── 0_ Raw_Git_readtree_writetree_committree.markdown ├── 54_Transfer_Protocols └── 0_Transfer_Protocols.markdown └── 55_Glossary └── 0_Glossary.markdown /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/TODO.markdown -------------------------------------------------------------------------------- /assets/blueprint/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/ie.css -------------------------------------------------------------------------------- /assets/blueprint/plugins/fancy-type/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/plugins/fancy-type/readme.txt -------------------------------------------------------------------------------- /assets/blueprint/plugins/fancy-type/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/plugins/fancy-type/screen.css -------------------------------------------------------------------------------- /assets/blueprint/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/print.css -------------------------------------------------------------------------------- /assets/blueprint/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/screen.css -------------------------------------------------------------------------------- /assets/blueprint/src/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/src/forms.css -------------------------------------------------------------------------------- /assets/blueprint/src/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/src/grid.css -------------------------------------------------------------------------------- /assets/blueprint/src/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/src/grid.png -------------------------------------------------------------------------------- /assets/blueprint/src/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/src/ie.css -------------------------------------------------------------------------------- /assets/blueprint/src/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/src/print.css -------------------------------------------------------------------------------- /assets/blueprint/src/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/src/reset.css -------------------------------------------------------------------------------- /assets/blueprint/src/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/blueprint/src/typography.css -------------------------------------------------------------------------------- /assets/images/figure/model-dag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/model-dag.png -------------------------------------------------------------------------------- /assets/images/figure/model-real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/model-real.png -------------------------------------------------------------------------------- /assets/images/figure/object-blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/object-blob.png -------------------------------------------------------------------------------- /assets/images/figure/object-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/object-commit.png -------------------------------------------------------------------------------- /assets/images/figure/object-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/object-tag.png -------------------------------------------------------------------------------- /assets/images/figure/object-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/object-tree.png -------------------------------------------------------------------------------- /assets/images/figure/object_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/object_types.png -------------------------------------------------------------------------------- /assets/images/figure/objects-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/objects-example.png -------------------------------------------------------------------------------- /assets/images/figure/pack-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/pack-index.png -------------------------------------------------------------------------------- /assets/images/figure/packfile-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/packfile-format.png -------------------------------------------------------------------------------- /assets/images/figure/packfile-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/packfile-index.png -------------------------------------------------------------------------------- /assets/images/figure/packfile-logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/packfile-logic.png -------------------------------------------------------------------------------- /assets/images/figure/rebase0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/rebase0.png -------------------------------------------------------------------------------- /assets/images/figure/rebase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/rebase1.png -------------------------------------------------------------------------------- /assets/images/figure/rebase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/rebase2.png -------------------------------------------------------------------------------- /assets/images/figure/rebase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/rebase3.png -------------------------------------------------------------------------------- /assets/images/figure/rebase4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/rebase4.png -------------------------------------------------------------------------------- /assets/images/figure/rebase5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/figure/rebase5.png -------------------------------------------------------------------------------- /assets/images/git-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/git-logo.png -------------------------------------------------------------------------------- /assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/github.png -------------------------------------------------------------------------------- /assets/images/header-book.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/header-book.gif -------------------------------------------------------------------------------- /assets/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/pdf.png -------------------------------------------------------------------------------- /assets/images/tar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/tar.png -------------------------------------------------------------------------------- /assets/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/images/zip.png -------------------------------------------------------------------------------- /assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/javascripts/application.js -------------------------------------------------------------------------------- /assets/javascripts/jquery-1.2.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/javascripts/jquery-1.2.6.min.js -------------------------------------------------------------------------------- /assets/javascripts/jquery.corner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/javascripts/jquery.corner.js -------------------------------------------------------------------------------- /assets/stylesheets/mac_classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/stylesheets/mac_classic.css -------------------------------------------------------------------------------- /assets/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/assets/stylesheets/style.css -------------------------------------------------------------------------------- /dailybuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/dailybuild.sh -------------------------------------------------------------------------------- /layout/book_index_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/layout/book_index_template.html -------------------------------------------------------------------------------- /layout/chapter_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/layout/chapter_template.html -------------------------------------------------------------------------------- /layout/mac_classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/layout/mac_classic.css -------------------------------------------------------------------------------- /layout/pdf_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/layout/pdf_template.html -------------------------------------------------------------------------------- /layout/second.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/layout/second.css -------------------------------------------------------------------------------- /onekey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/onekey.sh -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/html.rb -------------------------------------------------------------------------------- /script/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/local.rb -------------------------------------------------------------------------------- /script/merge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/merge.rb -------------------------------------------------------------------------------- /script/myUpload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/myUpload.sh -------------------------------------------------------------------------------- /script/pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/pdf.rb -------------------------------------------------------------------------------- /script/pdf1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/pdf1.rb -------------------------------------------------------------------------------- /script/prince.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/prince.rb -------------------------------------------------------------------------------- /script/sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/sitemap.rb -------------------------------------------------------------------------------- /script/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/script/upload.sh -------------------------------------------------------------------------------- /text/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/.DS_Store -------------------------------------------------------------------------------- /text/01_Introduction/00_Section_Introduction.markdown: -------------------------------------------------------------------------------- 1 | #Introduction -------------------------------------------------------------------------------- /text/01_Introduction/0_ Introduction.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/01_Introduction/0_ Introduction.markdown -------------------------------------------------------------------------------- /text/02_Git_Object_Db_Basics/0_ Git_Object_Db_Basics.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/02_Git_Object_Db_Basics/0_ Git_Object_Db_Basics.markdown -------------------------------------------------------------------------------- /text/02_Git_Object_Db_Basics/1_Trees_and_Blobs.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/02_Git_Object_Db_Basics/1_Trees_and_Blobs.markdown -------------------------------------------------------------------------------- /text/02_Git_Object_Db_Basics/2_Commits.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/02_Git_Object_Db_Basics/2_Commits.markdown -------------------------------------------------------------------------------- /text/02_Git_Object_Db_Basics/3_Trust_and_Tags.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/02_Git_Object_Db_Basics/3_Trust_and_Tags.markdown -------------------------------------------------------------------------------- /text/02a_Git_Directory_and_Working_Directory/0_ Git_Directory_and_Working_Directory.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/02a_Git_Directory_and_Working_Directory/0_ Git_Directory_and_Working_Directory.markdown -------------------------------------------------------------------------------- /text/03_The_Git_Index/0_ The_Git_Index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/03_The_Git_Index/0_ The_Git_Index.markdown -------------------------------------------------------------------------------- /text/05_Installing_Git/00_Section.markdown: -------------------------------------------------------------------------------- 1 | #First Time -------------------------------------------------------------------------------- /text/05_Installing_Git/0_Installing_Git.markdown: -------------------------------------------------------------------------------- 1 | ## Installing Git ## 2 | 3 | 4 | -------------------------------------------------------------------------------- /text/05_Installing_Git/0_Source.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/05_Installing_Git/0_Source.markdown -------------------------------------------------------------------------------- /text/05_Installing_Git/1_Linux.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/05_Installing_Git/1_Linux.markdown -------------------------------------------------------------------------------- /text/05_Installing_Git/2_Mac_104.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/05_Installing_Git/2_Mac_104.markdown -------------------------------------------------------------------------------- /text/05_Installing_Git/3_Mac_105.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/05_Installing_Git/3_Mac_105.markdown -------------------------------------------------------------------------------- /text/05_Installing_Git/4_Windows.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/05_Installing_Git/4_Windows.markdown -------------------------------------------------------------------------------- /text/06_Setup_and_Initialization/0_ Setup_and_Initialization.markdown: -------------------------------------------------------------------------------- 1 | ## Setup and Initialization ## 2 | 3 | -------------------------------------------------------------------------------- /text/06_Setup_and_Initialization/1_Git_Config.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/06_Setup_and_Initialization/1_Git_Config.markdown -------------------------------------------------------------------------------- /text/06a_Getting_A_Repo/00_Section_Basic_Usage.markdown: -------------------------------------------------------------------------------- 1 | # Basic Usage # 2 | 3 | -------------------------------------------------------------------------------- /text/06a_Getting_A_Repo/1_Getting_a_Git_Repo.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/06a_Getting_A_Repo/1_Getting_a_Git_Repo.markdown -------------------------------------------------------------------------------- /text/07_Normal_Workflow/0_ Normal_Workflow.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/07_Normal_Workflow/0_ Normal_Workflow.markdown -------------------------------------------------------------------------------- /text/08_Basic_Branching_and_Merging/0_ Basic_Branching_and_Merging.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/08_Basic_Branching_and_Merging/0_ Basic_Branching_and_Merging.markdown -------------------------------------------------------------------------------- /text/09_Reviewing_History_Git_Log/0_ Reviewing_History_Git_Log.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/09_Reviewing_History_Git_Log/0_ Reviewing_History_Git_Log.markdown -------------------------------------------------------------------------------- /text/10_Comparing_Commits_Git_Diff/0_ Comparing_Commits_Git_Diff.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/10_Comparing_Commits_Git_Diff/0_ Comparing_Commits_Git_Diff.markdown -------------------------------------------------------------------------------- /text/11_Distributed_Workflows_Clone_Fetch_Push/0_ Distributed_Workflows_Clone_Fetch_Push.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/11_Distributed_Workflows_Clone_Fetch_Push/0_ Distributed_Workflows_Clone_Fetch_Push.markdown -------------------------------------------------------------------------------- /text/12_Git_Tag/0_ Git_Tag.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/12_Git_Tag/0_ Git_Tag.markdown -------------------------------------------------------------------------------- /text/12a_Ignoring_Files/00_Section_Intermediate_Usage.markdown: -------------------------------------------------------------------------------- 1 | #Intermediate Usage 2 | -------------------------------------------------------------------------------- /text/12a_Ignoring_Files/0_Ignoring_Files.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/12a_Ignoring_Files/0_Ignoring_Files.markdown -------------------------------------------------------------------------------- /text/13_Rebasing/0_ Rebasing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/13_Rebasing/0_ Rebasing.markdown -------------------------------------------------------------------------------- /text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown -------------------------------------------------------------------------------- /text/15_Interactive_Adding/0_ Interactive_Adding.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/15_Interactive_Adding/0_ Interactive_Adding.markdown -------------------------------------------------------------------------------- /text/16_Stashing/0_ Stashing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/16_Stashing/0_ Stashing.markdown -------------------------------------------------------------------------------- /text/17_Git_Treeishes/0_ Git_Treeishes.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/17_Git_Treeishes/0_ Git_Treeishes.markdown -------------------------------------------------------------------------------- /text/18_Tracking_Branches/0_ Tracking_Branches.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/18_Tracking_Branches/0_ Tracking_Branches.markdown -------------------------------------------------------------------------------- /text/19_Finding_in_Git_Grep/0_ Finding_in_Git_Grep.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/19_Finding_in_Git_Grep/0_ Finding_in_Git_Grep.markdown -------------------------------------------------------------------------------- /text/21_Redoing_Git_Reset_and_Revert/0_ Redoing_Git_Reset_and_Revert.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/21_Redoing_Git_Reset_and_Revert/0_ Redoing_Git_Reset_and_Revert.markdown -------------------------------------------------------------------------------- /text/22_Maintaining_Git_Gc_Prune_Fsck/0_ Maintaining_Git_Gc_Prune_Fsck.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/22_Maintaining_Git_Gc_Prune_Fsck/0_ Maintaining_Git_Gc_Prune_Fsck.markdown -------------------------------------------------------------------------------- /text/230_Setting_Up_A_Public_Repo_Git_Http_Ssh_Gitosis/0_ Setting_Up_A_Public_Repo.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/230_Setting_Up_A_Public_Repo_Git_Http_Ssh_Gitosis/0_ Setting_Up_A_Public_Repo.markdown -------------------------------------------------------------------------------- /text/23A_Setting_Up_Private_Repo/0_Setting_Up_Private_Repo.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/23A_Setting_Up_Private_Repo/0_Setting_Up_Private_Repo.markdown -------------------------------------------------------------------------------- /text/24_Creating_New_Empty_Branches/00_Section_Advanced_Git.markdown: -------------------------------------------------------------------------------- 1 | # Advanced Git # 2 | 3 | -------------------------------------------------------------------------------- /text/24_Creating_New_Empty_Branches/0_ Creating_New_Empty_Branches.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/24_Creating_New_Empty_Branches/0_ Creating_New_Empty_Branches.markdown -------------------------------------------------------------------------------- /text/25_Changing_Your_History/0_Changing_History.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/25_Changing_Your_History/0_Changing_History.markdown -------------------------------------------------------------------------------- /text/26_Advanced_Branching_And_Merging/0_Advanced_Branching_And_Merging.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/26_Advanced_Branching_And_Merging/0_Advanced_Branching_And_Merging.markdown -------------------------------------------------------------------------------- /text/26_Advanced_Branching_And_Merging/1_Advanced_Merging_Multiway_Merge_Subtree.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/26_Advanced_Branching_And_Merging/1_Advanced_Merging_Multiway_Merge_Subtree.markdown -------------------------------------------------------------------------------- /text/27_Finding_Issues_Git_Bisect/0_ Finding_Issues_Git_Bisect.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/27_Finding_Issues_Git_Bisect/0_ Finding_Issues_Git_Bisect.markdown -------------------------------------------------------------------------------- /text/28_Finding_Issues_Git_Blame/0_ Finding_Issues_Git_Blame.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/28_Finding_Issues_Git_Blame/0_ Finding_Issues_Git_Blame.markdown -------------------------------------------------------------------------------- /text/29_Git_and_Email_Am_Format_Patch/0_ Git_and_Email_Am_Format.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/29_Git_and_Email_Am_Format_Patch/0_ Git_and_Email_Am_Format.markdown -------------------------------------------------------------------------------- /text/30_Customizing_Git_Git_Config/0_ Customizing_Git_Git_Config.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/30_Customizing_Git_Git_Config/0_ Customizing_Git_Git_Config.markdown -------------------------------------------------------------------------------- /text/31_Git_Hooks/0_ Git_Hooks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/31_Git_Hooks/0_ Git_Hooks.markdown -------------------------------------------------------------------------------- /text/32_Git_Recovery_Corrupted_Objects/0_ Git_Recovery_Corrupted_Objects.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/32_Git_Recovery_Corrupted_Objects/0_ Git_Recovery_Corrupted_Objects.markdown -------------------------------------------------------------------------------- /text/34_Git_Submodules/1_Submodules.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/34_Git_Submodules/1_Submodules.markdown -------------------------------------------------------------------------------- /text/35_Git_on_Windows/00_Section_Working_with_Git.markdown: -------------------------------------------------------------------------------- 1 | #Working with Git -------------------------------------------------------------------------------- /text/35_Git_on_Windows/0_ Git_on_Windows.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/35_Git_on_Windows/0_ Git_on_Windows.markdown -------------------------------------------------------------------------------- /text/37_Deploying_with_Git/0_ Capistrano_and_Git.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/37_Deploying_with_Git/0_ Capistrano_and_Git.markdown -------------------------------------------------------------------------------- /text/38_Subversion_Integration/0_ Subversion_Integration.markdown: -------------------------------------------------------------------------------- 1 | ##Subversion Integration -------------------------------------------------------------------------------- /text/39_SCM_Migration/0_Scm_Migration.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/39_SCM_Migration/0_Scm_Migration.markdown -------------------------------------------------------------------------------- /text/40_Graphical_Git_gitgui_gitk/0_ Graphical_Git_gitgui_gitk.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/40_Graphical_Git_gitgui_gitk/0_ Graphical_Git_gitgui_gitk.markdown -------------------------------------------------------------------------------- /text/41_Hosting_Git_gitweb_repoorcz_github_gitorious/0_ Hosting_Git_gitweb_repoorcz_github.markdown: -------------------------------------------------------------------------------- 1 | ## Hosted Git ## 2 | 3 | github 4 | 5 | repoorcz 6 | 7 | -------------------------------------------------------------------------------- /text/42_Alternative_Uses_TicGit/0_ Alternative_Uses_ContentDistribution.markdown: -------------------------------------------------------------------------------- 1 | ## Alternative Uses ## 2 | 3 | ContentDistribution 4 | 5 | TicGit -------------------------------------------------------------------------------- /text/44_Scripting_and_Git/0_ Ruby_and_Git_grit.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/44_Scripting_and_Git/0_ Ruby_and_Git_grit.markdown -------------------------------------------------------------------------------- /text/47_Git_and_Editors_tm_eclipse_nb/0_ Git_and_Editors_tm_eclipse.markdown: -------------------------------------------------------------------------------- 1 | ## Git and Editors ## 2 | 3 | textmate 4 | 5 | eclipse 6 | 7 | netbeans -------------------------------------------------------------------------------- /text/48_How_Git_Stores_Objects/00_Section_Internals_and_Plumbing.markdown: -------------------------------------------------------------------------------- 1 | # Internals and Plumbing # 2 | 3 | -------------------------------------------------------------------------------- /text/48_How_Git_Stores_Objects/0_ How_Git_Stores_Objects.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/48_How_Git_Stores_Objects/0_ How_Git_Stores_Objects.markdown -------------------------------------------------------------------------------- /text/49_Browsing_Git_Objects/0_ Browsing_Git_Objects.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/49_Browsing_Git_Objects/0_ Browsing_Git_Objects.markdown -------------------------------------------------------------------------------- /text/50_Git_References_updateref/0_ Git_References_updateref.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/50_Git_References_updateref/0_ Git_References_updateref.markdown -------------------------------------------------------------------------------- /text/51_The_Git_Index_lsfiles/0_ The_Git_Index_lsfiles.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/51_The_Git_Index_lsfiles/0_ The_Git_Index_lsfiles.markdown -------------------------------------------------------------------------------- /text/52_The_Packfile/0_The_Packfile.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/52_The_Packfile/0_The_Packfile.markdown -------------------------------------------------------------------------------- /text/53_Raw_Git_readtree_writetree_committree/0_ Raw_Git_readtree_writetree_committree.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/53_Raw_Git_readtree_writetree_committree/0_ Raw_Git_readtree_writetree_committree.markdown -------------------------------------------------------------------------------- /text/54_Transfer_Protocols/0_Transfer_Protocols.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/54_Transfer_Protocols/0_Transfer_Protocols.markdown -------------------------------------------------------------------------------- /text/55_Glossary/0_Glossary.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text/55_Glossary/0_Glossary.markdown -------------------------------------------------------------------------------- /text_zh/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/.DS_Store -------------------------------------------------------------------------------- /text_zh/01_Introduction/00_Section_Introduction.markdown: -------------------------------------------------------------------------------- 1 | # 介绍 -------------------------------------------------------------------------------- /text_zh/01_Introduction/0_ Introduction.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/01_Introduction/0_ Introduction.markdown -------------------------------------------------------------------------------- /text_zh/02_Git_Object_Db_Basics/0_ Git_Object_Db_Basics.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/02_Git_Object_Db_Basics/0_ Git_Object_Db_Basics.markdown -------------------------------------------------------------------------------- /text_zh/02_Git_Object_Db_Basics/1_Trees_and_Blobs.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/02_Git_Object_Db_Basics/1_Trees_and_Blobs.markdown -------------------------------------------------------------------------------- /text_zh/02_Git_Object_Db_Basics/2_Commits.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/02_Git_Object_Db_Basics/2_Commits.markdown -------------------------------------------------------------------------------- /text_zh/02_Git_Object_Db_Basics/3_Trust_and_Tags.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/02_Git_Object_Db_Basics/3_Trust_and_Tags.markdown -------------------------------------------------------------------------------- /text_zh/02a_Git_Directory_and_Working_Directory/0_ Git_Directory_and_Working_Directory.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/02a_Git_Directory_and_Working_Directory/0_ Git_Directory_and_Working_Directory.markdown -------------------------------------------------------------------------------- /text_zh/03_The_Git_Index/0_ The_Git_Index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/03_The_Git_Index/0_ The_Git_Index.markdown -------------------------------------------------------------------------------- /text_zh/05_Installing_Git/00_Section.markdown: -------------------------------------------------------------------------------- 1 | # 第一步 -------------------------------------------------------------------------------- /text_zh/05_Installing_Git/0_Installing_Git.markdown: -------------------------------------------------------------------------------- 1 | ## 安装Git ## -------------------------------------------------------------------------------- /text_zh/05_Installing_Git/0_Source.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/05_Installing_Git/0_Source.markdown -------------------------------------------------------------------------------- /text_zh/05_Installing_Git/1_Linux.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/05_Installing_Git/1_Linux.markdown -------------------------------------------------------------------------------- /text_zh/05_Installing_Git/2_Mac_104.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/05_Installing_Git/2_Mac_104.markdown -------------------------------------------------------------------------------- /text_zh/05_Installing_Git/3_Mac_105.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/05_Installing_Git/3_Mac_105.markdown -------------------------------------------------------------------------------- /text_zh/05_Installing_Git/4_Windows.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/05_Installing_Git/4_Windows.markdown -------------------------------------------------------------------------------- /text_zh/06_Setup_and_Initialization/0_ Setup_and_Initialization.markdown: -------------------------------------------------------------------------------- 1 | ## 安装与初始化 ## 2 | -------------------------------------------------------------------------------- /text_zh/06_Setup_and_Initialization/1_Git_Config.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/06_Setup_and_Initialization/1_Git_Config.markdown -------------------------------------------------------------------------------- /text_zh/06a_Getting_A_Repo/00_Section_Basic_Usage.markdown: -------------------------------------------------------------------------------- 1 | # 基本用法 2 | -------------------------------------------------------------------------------- /text_zh/06a_Getting_A_Repo/1_Getting_a_Git_Repo.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/06a_Getting_A_Repo/1_Getting_a_Git_Repo.markdown -------------------------------------------------------------------------------- /text_zh/07_Normal_Workflow/0_ Normal_Workflow.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/07_Normal_Workflow/0_ Normal_Workflow.markdown -------------------------------------------------------------------------------- /text_zh/08_Basic_Branching_and_Merging/0_ Basic_Branching_and_Merging.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/08_Basic_Branching_and_Merging/0_ Basic_Branching_and_Merging.markdown -------------------------------------------------------------------------------- /text_zh/09_Reviewing_History_Git_Log/0_ Reviewing_History_Git_Log.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/09_Reviewing_History_Git_Log/0_ Reviewing_History_Git_Log.markdown -------------------------------------------------------------------------------- /text_zh/10_Comparing_Commits_Git_Diff/0_ Comparing_Commits_Git_Diff.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/10_Comparing_Commits_Git_Diff/0_ Comparing_Commits_Git_Diff.markdown -------------------------------------------------------------------------------- /text_zh/11_Distributed_Workflows_Clone_Fetch_Push/0_ Distributed_Workflows_Clone_Fetch_Push.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/11_Distributed_Workflows_Clone_Fetch_Push/0_ Distributed_Workflows_Clone_Fetch_Push.markdown -------------------------------------------------------------------------------- /text_zh/12_Git_Tag/0_ Git_Tag.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/12_Git_Tag/0_ Git_Tag.markdown -------------------------------------------------------------------------------- /text_zh/12a_Ignoring_Files/00_Section_Intermediate_Usage.markdown: -------------------------------------------------------------------------------- 1 | # 中级技能 -------------------------------------------------------------------------------- /text_zh/12a_Ignoring_Files/0_Ignoring_Files.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/12a_Ignoring_Files/0_Ignoring_Files.markdown -------------------------------------------------------------------------------- /text_zh/13_Rebasing/0_ Rebasing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/13_Rebasing/0_ Rebasing.markdown -------------------------------------------------------------------------------- /text_zh/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown -------------------------------------------------------------------------------- /text_zh/15_Interactive_Adding/0_ Interactive_Adding.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/15_Interactive_Adding/0_ Interactive_Adding.markdown -------------------------------------------------------------------------------- /text_zh/16_Stashing/0_ Stashing.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/16_Stashing/0_ Stashing.markdown -------------------------------------------------------------------------------- /text_zh/17_Git_Treeishes/0_ Git_Treeishes.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/17_Git_Treeishes/0_ Git_Treeishes.markdown -------------------------------------------------------------------------------- /text_zh/18_Tracking_Branches/0_ Tracking_Branches.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/18_Tracking_Branches/0_ Tracking_Branches.markdown -------------------------------------------------------------------------------- /text_zh/19_Finding_in_Git_Grep/0_ Finding_in_Git_Grep.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/19_Finding_in_Git_Grep/0_ Finding_in_Git_Grep.markdown -------------------------------------------------------------------------------- /text_zh/21_Redoing_Git_Reset_and_Revert/0_ Redoing_Git_Reset_and_Revert.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/21_Redoing_Git_Reset_and_Revert/0_ Redoing_Git_Reset_and_Revert.markdown -------------------------------------------------------------------------------- /text_zh/22_Maintaining_Git_Gc_Prune_Fsck/0_ Maintaining_Git_Gc_Prune_Fsck.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/22_Maintaining_Git_Gc_Prune_Fsck/0_ Maintaining_Git_Gc_Prune_Fsck.markdown -------------------------------------------------------------------------------- /text_zh/230_Setting_Up_A_Public_Repo_Git_Http_Ssh_Gitosis/0_ Setting_Up_A_Public_Repo.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/230_Setting_Up_A_Public_Repo_Git_Http_Ssh_Gitosis/0_ Setting_Up_A_Public_Repo.markdown -------------------------------------------------------------------------------- /text_zh/23A_Setting_Up_Private_Repo/0_Setting_Up_Private_Repo.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/23A_Setting_Up_Private_Repo/0_Setting_Up_Private_Repo.markdown -------------------------------------------------------------------------------- /text_zh/24_Creating_New_Empty_Branches/00_Section_Advanced_Git.markdown: -------------------------------------------------------------------------------- 1 | # 高级技能 2 | -------------------------------------------------------------------------------- /text_zh/24_Creating_New_Empty_Branches/0_ Creating_New_Empty_Branches.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/24_Creating_New_Empty_Branches/0_ Creating_New_Empty_Branches.markdown -------------------------------------------------------------------------------- /text_zh/25_Changing_Your_History/0_Changing_History.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/25_Changing_Your_History/0_Changing_History.markdown -------------------------------------------------------------------------------- /text_zh/26_Advanced_Branching_And_Merging/0_Advanced_Branching_And_Merging.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/26_Advanced_Branching_And_Merging/0_Advanced_Branching_And_Merging.markdown -------------------------------------------------------------------------------- /text_zh/26_Advanced_Branching_And_Merging/1_Advanced_Merging_Multiway_Merge_Subtree.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/26_Advanced_Branching_And_Merging/1_Advanced_Merging_Multiway_Merge_Subtree.markdown -------------------------------------------------------------------------------- /text_zh/27_Finding_Issues_Git_Bisect/0_ Finding_Issues_Git_Bisect.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/27_Finding_Issues_Git_Bisect/0_ Finding_Issues_Git_Bisect.markdown -------------------------------------------------------------------------------- /text_zh/28_Finding_Issues_Git_Blame/0_ Finding_Issues_Git_Blame.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/28_Finding_Issues_Git_Blame/0_ Finding_Issues_Git_Blame.markdown -------------------------------------------------------------------------------- /text_zh/29_Git_and_Email_Am_Format_Patch/0_ Git_and_Email_Am_Format.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/29_Git_and_Email_Am_Format_Patch/0_ Git_and_Email_Am_Format.markdown -------------------------------------------------------------------------------- /text_zh/30_Customizing_Git_Git_Config/0_ Customizing_Git_Git_Config.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/30_Customizing_Git_Git_Config/0_ Customizing_Git_Git_Config.markdown -------------------------------------------------------------------------------- /text_zh/31_Git_Hooks/0_ Git_Hooks.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/31_Git_Hooks/0_ Git_Hooks.markdown -------------------------------------------------------------------------------- /text_zh/32_Git_Recovery_Corrupted_Objects/0_ Git_Recovery_Corrupted_Objects.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/32_Git_Recovery_Corrupted_Objects/0_ Git_Recovery_Corrupted_Objects.markdown -------------------------------------------------------------------------------- /text_zh/34_Git_Submodules/1_Submodules.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/34_Git_Submodules/1_Submodules.markdown -------------------------------------------------------------------------------- /text_zh/35_Git_on_Windows/00_Section_Working_with_Git.markdown: -------------------------------------------------------------------------------- 1 | # Git生态体系 -------------------------------------------------------------------------------- /text_zh/35_Git_on_Windows/0_ Git_on_Windows.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/35_Git_on_Windows/0_ Git_on_Windows.markdown -------------------------------------------------------------------------------- /text_zh/37_Deploying_with_Git/0_ Capistrano_and_Git.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/37_Deploying_with_Git/0_ Capistrano_and_Git.markdown -------------------------------------------------------------------------------- /text_zh/38_Subversion_Integration/0_ Subversion_Integration.markdown: -------------------------------------------------------------------------------- 1 | ## 与 Subversion 集成 -------------------------------------------------------------------------------- /text_zh/39_SCM_Migration/0_Scm_Migration.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/39_SCM_Migration/0_Scm_Migration.markdown -------------------------------------------------------------------------------- /text_zh/40_Graphical_Git_gitgui_gitk/0_ Graphical_Git_gitgui_gitk.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/40_Graphical_Git_gitgui_gitk/0_ Graphical_Git_gitgui_gitk.markdown -------------------------------------------------------------------------------- /text_zh/41_Hosting_Git_gitweb_repoorcz_github_gitorious/0_ Hosting_Git_gitweb_repoorcz_github.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/41_Hosting_Git_gitweb_repoorcz_github_gitorious/0_ Hosting_Git_gitweb_repoorcz_github.markdown -------------------------------------------------------------------------------- /text_zh/42_Alternative_Uses_TicGit/0_ Alternative_Uses_ContentDistribution.markdown: -------------------------------------------------------------------------------- 1 | ## Git的其它用法 ## 2 | 3 | ContentDistribution 4 | 5 | [TicGit](https://github.com/schacon/ticgit) -------------------------------------------------------------------------------- /text_zh/44_Scripting_and_Git/0_ Ruby_and_Git_grit.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/44_Scripting_and_Git/0_ Ruby_and_Git_grit.markdown -------------------------------------------------------------------------------- /text_zh/47_Git_and_Editors_tm_eclipse_nb/0_ Git_and_Editors_tm_eclipse.markdown: -------------------------------------------------------------------------------- 1 | ## Git 与编辑器 ## 2 | 3 | textmate 4 | 5 | eclipse 6 | 7 | netbeans -------------------------------------------------------------------------------- /text_zh/48_How_Git_Stores_Objects/00_Section_Internals_and_Plumbing.markdown: -------------------------------------------------------------------------------- 1 | # 原理解析 2 | 3 | -------------------------------------------------------------------------------- /text_zh/48_How_Git_Stores_Objects/0_ How_Git_Stores_Objects.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/48_How_Git_Stores_Objects/0_ How_Git_Stores_Objects.markdown -------------------------------------------------------------------------------- /text_zh/49_Browsing_Git_Objects/0_ Browsing_Git_Objects.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/49_Browsing_Git_Objects/0_ Browsing_Git_Objects.markdown -------------------------------------------------------------------------------- /text_zh/50_Git_References_updateref/0_ Git_References_updateref.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/50_Git_References_updateref/0_ Git_References_updateref.markdown -------------------------------------------------------------------------------- /text_zh/51_The_Git_Index_lsfiles/0_ The_Git_Index_lsfiles.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/51_The_Git_Index_lsfiles/0_ The_Git_Index_lsfiles.markdown -------------------------------------------------------------------------------- /text_zh/52_The_Packfile/0_The_Packfile.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/52_The_Packfile/0_The_Packfile.markdown -------------------------------------------------------------------------------- /text_zh/53_Raw_Git_readtree_writetree_committree/0_ Raw_Git_readtree_writetree_committree.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/53_Raw_Git_readtree_writetree_committree/0_ Raw_Git_readtree_writetree_committree.markdown -------------------------------------------------------------------------------- /text_zh/54_Transfer_Protocols/0_Transfer_Protocols.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/54_Transfer_Protocols/0_Transfer_Protocols.markdown -------------------------------------------------------------------------------- /text_zh/55_Glossary/0_Glossary.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhui998/gitbook/HEAD/text_zh/55_Glossary/0_Glossary.markdown --------------------------------------------------------------------------------