Skip to content

Commit 251861b

Browse files
committed
layed out the contents in the TODO, fixed up the scripts a bit
1 parent cfb3271 commit 251861b

File tree

8 files changed

+87
-58
lines changed

8 files changed

+87
-58
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
output/*

TODO.markdown

+78
Original file line numberDiff line numberDiff line change
@@ -1 +1,79 @@
1+
= Maint Tasks
2+
13
* Generate HTML only output - one page per chapter
4+
5+
6+
= Content
7+
8+
=== Introduction
9+
10+
* Introduction (Why Git)
11+
* Git Object DB Basics (Git vs SVN, what is a DAG)
12+
* The Git Index
13+
* Git directory and working directory
14+
15+
=== First Time
16+
17+
* Installing Git
18+
* Setup and Initialization
19+
20+
=== Basic Usage
21+
22+
* Normal Workflow
23+
* Basic Branching and Merging
24+
* Reviewing History – Git Log
25+
* Comparing Commits – Git Diff
26+
* Distributed Workflows – clone, fetch, push
27+
* Git Tag
28+
29+
=== Intermediate Usage
30+
31+
* Rebasing
32+
* Interactive Rebasing
33+
* Interactive Adding
34+
* Stashing
35+
* Git Treeishes
36+
* Tracking Branches
37+
* Finding in Git – git grep
38+
* Advanced Git Log
39+
* Re-doing – git reset and revert
40+
* Maintaining Git – gc and prune, fsck
41+
* Setting up a Public Repo – git, http/s, ssh, gitosis
42+
* Git Workflows
43+
44+
=== Advanced Git
45+
46+
* Creating New Empty Branches
47+
* Advanced Branching and Merging
48+
* Finding Issues – Git Bisect
49+
* Finding Issues – Git Blame
50+
* Git and Email – git-am, git-format-patch
51+
* Stacked Git – stgit, guilt
52+
* Customizing Git – git config
53+
* Git Hooks
54+
* Git Recovery – corrupted blob objects
55+
* Advanced Merging – multiway, merge subtree
56+
* Git Submodules
57+
58+
=== Working With Git
59+
60+
* Git on Windows
61+
* Capistrano and Git
62+
* Subversion Integration
63+
* Subversion Migration
64+
* Graphical Git – gitgui
65+
* Hosting Git – Gitorious, GitHub
66+
* Alternative Uses of Git – TicGit
67+
* Alternative Uses of Git – Content Distribution
68+
* Ruby and Git – grit, gruby, Ruby/Git
69+
* Git and Editors (Textmate, Eclipse, etc)
70+
71+
=== Internals and Plumbing
72+
73+
* How Git Stores Objects (loose and packed)
74+
* Browsing Git Objects - cat-file, ls-tree, gitk
75+
* Git References - update-ref
76+
* The Git Index – ls-files
77+
* Working with Packfiles unpack, listing pack contents
78+
* Raw Git git read-tree, write-tree
79+

layout/pdf_template.html

+1-6
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,11 @@
99
<body>
1010
<div class="frontcover"></div>
1111

12-
<div class="halftitlepage">
13-
<h1 class="no-toc">Git Community Book</h1>
14-
<h2 class="no-toc">What's New</h2>
15-
</div>
16-
1712
<div class="titlepage">
1813
<h1 class="no-toc">Git Community Book</h1>
1914
<h2 class="no-toc">What's New</h2>
2015

21-
<p class="no-toc">Scott Chacon</p>
16+
<p class="no-toc">by Scott Chacon</p>
2217
<!-- also, the publisher's name would typically be printed here -->
2318
</div>
2419

output/book.pdf

-21.7 KB
Binary file not shown.

output/full_book.texttile

-5
This file was deleted.

output/index.html

-41
This file was deleted.

script/html.rb

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
require 'rubygems'
2-
require 'discount'
2+
require 'rdiscount'
33
require "uv"
44

55
desc 'Create the HTML version'
66
task :html => :merge do
7-
if File.exists?('output/full_book.texttile')
8-
output = File.new('output/full_book.texttile').read
9-
output = Discount.new(output).to_html
7+
if File.exists?('output/full_book.markdown')
8+
output = File.new('output/full_book.markdown').read
9+
output = RDiscount.new(output).to_html
1010

11+
# code highlighting
1112
File.open('output/index.html', 'w') do |f|
1213
html_template = File.new("layout/pdf_template.html").read
1314
html_template.gsub!("#body", output)

script/merge.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
desc 'Agrupa todos os arquivos em um único arquivo'
1+
desc 'Merge all of the texttile output into a single file for pdf conversion'
22

33
task :merge do
4-
File.open('output/full_book.texttile', 'w+') do |f|
4+
File.open('output/full_book.markdown', 'w+') do |f|
55
Dir["text/**/*.markdown"].sort.each do |path|
66
f << File.new(path).read + "\r\n"
77
end

0 commit comments

Comments
 (0)