Skip to content

Commit 1e802bb

Browse files
committed
Merge pull request #201 from progit/epub-fix
Epub Fixes
2 parents 87f1d37 + 0a0016d commit 1e802bb

File tree

24 files changed

+6
-6
lines changed

24 files changed

+6
-6
lines changed

atlas.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"epub": {
3434
"index": true,
3535
"toc": true,
36-
"epubcheck": false,
36+
"epubcheck": true,
3737
"embedded_fonts": [
3838
"fonts/DejaVuSerif.otf",
3939
"fonts/DejaVuSans-Bold.otf",

book/01-introduction/sections/basics.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Staged means that you have marked a modified file in its current version to go i
8585
This leads us to the three main sections of a Git project: the Git directory, the working directory, and the staging area.
8686

8787
.Working directory, staging area, and Git directory.
88-
image::images/areas.png[Working directory, staging area, and Git directory.]
88+
image::images/areas.png["Working directory, staging area, and Git directory."]
8989

9090
The Git directory is where Git stores the metadata and object database for your project.
9191
This is the most important part of Git, and it is what is copied when you clone a repository from another computer.

book/03-git-branching/sections/rebasing.asc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,20 +150,20 @@ Suppose you clone from a central server and then do some work off that.
150150
Your commit history looks like this:
151151

152152
.Clone a repository, and base some work on it
153-
image::images/perils-of-rebasing-1.png[Clone a repository, and base some work on it.]
153+
image::images/perils-of-rebasing-1.png["Clone a repository, and base some work on it."]
154154

155155
Now, someone else does more work that includes a merge, and pushes that work to the central server.
156156
You fetch them and merge the new remote branch into your work, making your history look something like this:
157157

158158
.Fetch more commits, and merge them into your work
159-
image::images/perils-of-rebasing-2.png[Fetch more commits, and merge them into your work.]
159+
image::images/perils-of-rebasing-2.png["Fetch more commits, and merge them into your work."]
160160

161161
Next, the person who pushed the merged work decides to go back and rebase their work instead; they do a `git push --force` to overwrite the history on the server.
162162
You then fetch from that server, bringing down the new commits.
163163

164164
[[_pre_merge_rebase_work]]
165165
.Someone pushes rebased commits, abandoning commits you've based your work on
166-
image::images/perils-of-rebasing-3.png[Someone pushes rebased commits, abandoning commits you've based your work on.]
166+
image::images/perils-of-rebasing-3.png["Someone pushes rebased commits, abandoning commits you've based your work on."]
167167

168168
Now you're both in a pickle.
169169
If you do a `git pull`, you'll create a merge commit which includes both lines of history, and your repository will look like this:

book/06-github/sections/2-contributing.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ To https://github.com/tonychacon/blink
242242

243243
Once you do that, the Pull Request will be automatically updated and re-checked to see if it merges cleanly.
244244

245-
[[_pr_fail]]
245+
[[_pr_merge_fix]]
246246
.Pull Request now merges cleanly
247247
image::images/pr-02-merge-fix.png[PR fixed]
248248

16.6 KB
Binary file not shown.
329 Bytes
Loading
27.4 KB
Binary file not shown.
361 Bytes
Loading
27.4 KB
Binary file not shown.
353 Bytes
Loading

0 commit comments

Comments
 (0)