Skip to content

Commit eda1fbb

Browse files
committed
Rework repo structure to compile with asciidoctor
1 parent 271146b commit eda1fbb

File tree

294 files changed

+1056
-967
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

294 files changed

+1056
-967
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ progit.pdfmarks
88
progit.epub
99
progit-kf8.epub
1010
progit.mobi
11-
/images/
11+

book/A-git-in-other-environments/1-git-other-environments.asc A-git-in-other-environments.asc

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
[#A-git-in-other-environments]
12
[appendix]
23
//////////////////////////
34
== Git in Other Environments
@@ -15,17 +16,17 @@ Now we'll take a look at some of the other kinds of environments where Git can b
1516
しかし、話はそこで終わりません。Gitは通常、より大きなエコシステムの一部として使用されます。端末からの利用が常に最適解というわけではありません。
1617
ここでは、端末以外でGitを活用できる環境の例や、そこで他の(あるいは、あなたの)アプリケーションがどのようにGitと協調動作するかを見ていきます。
1718

18-
include::sections/guis.asc[]
19+
include::book/A-git-in-other-environments/sections/guis.asc[]
1920

20-
include::sections/visualstudio.asc[]
21+
include::book/A-git-in-other-environments/sections/visualstudio.asc[]
2122

22-
include::sections/eclipse.asc[]
23+
include::book/A-git-in-other-environments/sections/eclipse.asc[]
2324

24-
include::sections/bash.asc[]
25+
include::book/A-git-in-other-environments/sections/bash.asc[]
2526

26-
include::sections/zsh.asc[]
27+
include::book/A-git-in-other-environments/sections/zsh.asc[]
2728

28-
include::sections/powershell.asc[]
29+
include::book/A-git-in-other-environments/sections/powershell.asc[]
2930

3031
//////////////////////////
3132
=== Summary

book/B-embedding-git/1-embedding-git.asc B-embedding-git.asc

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
[#B-embedding-git]
12
[appendix]
23
//////////////////////////
34
== Embedding Git in your Applications
@@ -16,8 +17,8 @@ If you need to integrate Git with your application, you have essentially three c
1617
//////////////////////////
1718
Gitをアプリケーションに統合する場合、やり方は大きく分けて3種類あります。1つ目はシェルのプロセスを生成してGitのコマンドラインツールを使う方法、2つ目はLibgit2を使う方法、3つ目はJGitを使う方法です。
1819

19-
include::sections/command-line.asc[]
20+
include::book/B-embedding-git/sections/command-line.asc[]
2021

21-
include::sections/libgit2.asc[]
22+
include::book/B-embedding-git/sections/libgit2.asc[]
2223

23-
include::sections/jgit.asc[]
24+
include::book/B-embedding-git/sections/jgit.asc[]

book/C-git-commands/1-git-commands.asc C-git-commands.asc

+232-231
Large diffs are not rendered by default.

Gemfile

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
source 'https://rubygems.org'
22

33
gem 'rake'
4-
gem 'asciidoctor', '1.5.0'
4+
gem 'asciidoctor', '1.5.6.1'
55

66
gem 'json'
77
gem 'awesome_print'
88

9-
gem 'asciidoctor-epub3', '1.0.0.alpha.2'
10-
gem 'asciidoctor-pdf', '1.5.0.alpha.5'
9+
gem 'asciidoctor-epub3', :git => 'https://github.com/asciidoctor/asciidoctor-epub3'
10+
gem 'asciidoctor-pdf', '1.5.0.alpha.16'
1111

1212
gem 'coderay'
1313
gem 'pygments.rb'
1414
gem 'thread_safe'
1515
gem 'epubcheck'
1616
gem 'kindlegen'
17+
18+
gem 'octokit'

Gemfile.lock

-74
This file was deleted.

Rakefile

+143-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
namespace :book do
2-
desc 'prepare build'
3-
task :prebuild do
4-
Dir.mkdir 'images' unless Dir.exists? 'images'
5-
Dir.glob("book/*/images/*").each do |image|
6-
FileUtils.copy(image, "images/" + File.basename(image))
7-
end
8-
end
1+
# coding: utf-8
2+
require 'octokit'
93

4+
namespace :book do
105
desc 'build basic book formats'
11-
task :build => :prebuild do
6+
task :build do
7+
8+
puts "Generating contributors list"
9+
`git shortlog -s --all| grep -v -E "(Straub|Chacon)" | cut -f 2- | column -c 120 > book/contributors.txt`
10+
1211
puts "Converting to HTML..."
1312
`bundle exec asciidoctor progit.asc`
1413
puts " -- HTML output at progit.html"
@@ -17,14 +16,148 @@ namespace :book do
1716
`bundle exec asciidoctor-epub3 progit.asc`
1817
puts " -- Epub output at progit.epub"
1918

19+
sh "epubcheck progit.epub"
20+
2021
puts "Converting to Mobi (kf8)..."
2122
`bundle exec asciidoctor-epub3 -a ebook-format=kf8 progit.asc`
2223
puts " -- Mobi output at progit.mobi"
2324

2425
puts "Converting to PDF... (this one takes a while)"
2526
`bundle exec asciidoctor-pdf progit.asc 2>/dev/null`
26-
puts " -- PDF output at progit.pdf"
27+
puts " -- PDF output at progit.pdf"
28+
end
29+
30+
desc 'tag the repo with the latest version'
31+
task :tag do
32+
api_token = ENV['GITHUB_API_TOKEN']
33+
if (api_token && (ENV['TRAVIS_PULL_REQUEST'] == 'false') && (ENV['TRAVIS_BRANCH']=='master'))
34+
repo = ENV['TRAVIS_REPO_SLUG']
35+
@octokit = Octokit::Client.new(:access_token => api_token)
36+
begin
37+
last_version=@octokit.latest_release(repo).tag_name
38+
rescue
39+
last_version="2.1.-1"
40+
end
41+
new_patchlevel= last_version.split('.')[-1].to_i + 1
42+
new_version="2.1.#{new_patchlevel}"
43+
obj = @octokit.create_tag(repo, new_version, "Version " + new_version, ENV['TRAVIS_COMMIT'],
44+
'commit',
45+
'Automatic build', '[email protected]',
46+
Time.now.utc.iso8601)
47+
@octokit.create_ref(repo, "tags/#{new_version}", obj.sha)
48+
p "Created tag #{new_version}"
49+
else
50+
p 'This only runs on a commit to master'
51+
end
52+
end
53+
54+
desc 'convert book to asciidoctor compatibility'
55+
task:convert do
56+
`cp -aR ../progit2/images .`
57+
`sed -i -e 's!/images/!!' .gitignore`
58+
`git add images`
59+
`git rm -r book/*/images`
60+
61+
chapters = [
62+
["01", "introduction" ],
63+
["02", "git-basics" ],
64+
["03", "git-branching" ],
65+
["04", "git-server" ],
66+
["05", "distributed-git" ],
67+
["06", "github" ],
68+
["07", "git-tools" ],
69+
["08", "customizing-git" ],
70+
["09", "git-and-other-scms" ],
71+
["10", "git-internals" ],
72+
["A", "git-in-other-environments" ],
73+
["B", "embedding-git" ],
74+
["C", "git-commands" ]
75+
]
76+
77+
crossrefs = {}
78+
chapters.each { | num, title |
79+
if num =~ /[ABC]/
80+
chap = "#{num}-#{title}"
81+
else
82+
chap = "ch#{num}-#{title}"
83+
end
84+
Dir[File.join ["book","#{num}-#{title}" , "sections","*.asc"]].map { |filename|
85+
File.read(filename).scan(/\[\[(.*?)\]\]/)
86+
}.flatten.each { |ref|
87+
crossrefs[ref] = "#{chap}"
88+
}
89+
}
90+
91+
headrefs = {}
92+
chapters.each { | num, title |
93+
if num =~ /[ABC]/
94+
chap = "#{num}-#{title}"
95+
else
96+
chap = "ch#{num}-#{title}"
97+
end
98+
Dir[File.join ["book","#{num}-#{title}", "*.asc"]].map { |filename|
99+
File.read(filename).scan(/\[\[(.*?)\]\]/)
100+
}.flatten.each { |ref|
101+
headrefs[ref] = "#{chap}"
102+
}
103+
}
104+
105+
# transform all internal cross refs
106+
chapters.each { | num, title |
107+
if num =~ /[ABC]/
108+
chap = "#{num}-#{title}"
109+
else
110+
chap = "ch#{num}-#{title}"
111+
end
112+
files = Dir[File.join ["book","#{num}-#{title}" , "sections","*.asc"]] +
113+
Dir[File.join ["book","#{num}-#{title}" ,"1-*.asc"]]
114+
p files
115+
files.each { |filename|
116+
content = File.read(filename)
117+
new_contents = content.gsub(/\[\[(.*?)\]\]/, '[[r\1]]').gsub(
118+
"&rarr;", "→").gsub(/<<(.*?)>>/) { |match|
119+
ch = crossrefs[$1]
120+
h = headrefs[$1]
121+
# p " #{match} -> #{ch}, #{h}"
122+
if ch
123+
# if local do not add the file
124+
if ch==chap
125+
"<<r#{$1}>>"
126+
else
127+
"<<#{ch}#r#{$1}>>"
128+
end
129+
elsif h
130+
if h==chap
131+
"<<#{chap}>>"
132+
else
133+
"<<#{h}##{h}>>"
134+
end
135+
end
136+
}
137+
File.open(filename, "w") {|file| file.puts new_contents }
138+
}
139+
}
140+
141+
chapters.each { | num, title |
142+
if num =~ /[ABC]/
143+
chap = "#{num}-#{title}"
144+
else
145+
chap = "ch#{num}-#{title}"
146+
end
147+
Dir[File.join ["book","#{num}-#{title}" ,"1*.asc"]].map { |filename|
148+
content = File.read (filename)
149+
new_contents = content.gsub(/include::(.*?)asc/) {|match|
150+
"include::book/#{num}-#{title}/#{$1}asc"}
151+
`git rm #{filename}`
152+
File.open("#{chap}.asc", "w") {|file|
153+
file.puts "[##{chap}]\n"
154+
file.puts new_contents }
155+
`git add "#{chap}.asc"`
156+
}
157+
}
27158
end
28159
end
29160

161+
162+
30163
task :default => "book:build"

book/01-introduction/sections/basics.asc

+6-6
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ image::images/snapshots.png[Gitは時間を通じたプロジェクトのスナ
5959
This is an important distinction between Git and nearly all other VCSs.
6060
It makes Git reconsider almost every aspect of version control that most other systems copied from the previous generation.
6161
This makes Git more like a mini filesystem with some incredibly powerful tools built on top of it, rather than simply a VCS.
62-
We'll explore some of the benefits you gain by thinking of your data this way when we cover Git branching in <<_git_branching>>.
62+
We'll explore some of the benefits you gain by thinking of your data this way when we cover Git branching in <<ch03-git-branching#ch03-git-branching>>.
6363
//////////////////////////
6464
これが、Gitと類似の全ての他のVCSとの間の重要な違いです。
6565
ほとんどの他のシステムが以前の世代から真似してきた、ほとんど全てのバージョン管理のやり方(訳者注:aspectを意訳)を、Gitに見直させます。
6666
これは、Gitを、単純にVCSと言うより、その上に組み込まれた幾つかの途方も無くパワフルなツールを備えたミニ・ファイルシステムにしています。
67-
このやり方でデータを考えることで得られる利益の幾つかを、<<_git_branching>>を扱ったときに探求します。
67+
このやり方でデータを考えることで得られる利益の幾つかを、<<ch03-git-branching#ch03-git-branching>>を扱ったときに探求します。
6868
6969
//////////////////////////
7070
==== Nearly Every Operation Is Local
@@ -157,9 +157,9 @@ Gitで行動するとき、ほとんど全てはGitデータベースにデー
157157
158158
//////////////////////////
159159
This makes using Git a joy because we know we can experiment without the danger of severely screwing things up.
160-
For a more in-depth look at how Git stores its data and how you can recover data that seems lost, see <<_undoing>>.
160+
For a more in-depth look at how Git stores its data and how you can recover data that seems lost, see <<ch02-git-basics#r_undoing>>.
161161
//////////////////////////
162-
激しく物事をもみくちゃにする危険なしに試行錯誤を行なえるため、これはGitの利用を喜びに変えます。Gitがデータをどのように格納しているのかと失われたように思えるデータをどうやって回復できるのかについての、より詳細な解説に関しては、<<_undoing>>を参照してください。
162+
激しく物事をもみくちゃにする危険なしに試行錯誤を行なえるため、これはGitの利用を喜びに変えます。Gitがデータをどのように格納しているのかと失われたように思えるデータをどうやって回復できるのかについての、より詳細な解説に関しては、<<ch02-git-basics#r_undoing>>を参照してください。
163163
164164
//////////////////////////
165165
==== The Three States
@@ -232,9 +232,9 @@ The basic Git workflow goes something like this:
232232
If a particular version of a file is in the Git directory, it's considered committed.
233233
If it has been modified and was added to the staging area, it is staged.
234234
And if it was changed since it was checked out but has not been staged, it is modified.
235-
In <<_git_basics_chapter>>, you'll learn more about these states and how you can either take advantage of them or skip the staged part entirely.
235+
In <<ch02-git-basics#ch02-git-basics>>, you'll learn more about these states and how you can either take advantage of them or skip the staged part entirely.
236236
//////////////////////////
237237
もしファイルの特定のバージョンがGitディレクトリの中にあるとしたら、コミット済だと見なされます。
238238
もし修正されていて、ステージング・エリアに加えられていれば、ステージ済です。
239239
そして、チェックアウトされてから変更されましたが、ステージされていないとするなら、修正済です。
240-
<<_git_basics_chapter>>では、これらの状態と、どうやってこれらを利用をするか、もしくは完全にステージ化部分を省略するかに関してより詳しく学習します。
240+
<<ch02-git-basics#ch02-git-basics>>では、これらの状態と、どうやってこれらを利用をするか、もしくは完全にステージ化部分を省略するかに関してより詳しく学習します。

book/01-introduction/sections/first-time-setup.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[_first_time]]
1+
[[r_first_time]]
22
//////////////////////////
33
=== First-Time Git Setup
44
//////////////////////////

book/01-introduction/sections/help.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[_git_help]]
1+
[[r_git_help]]
22
//////////////////////////
33
=== Getting Help
44
//////////////////////////

book/01-introduction/sections/history.asc

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Some of the goals of the new system were as follows:
4141
4242
//////////////////////////
4343
Since its birth in 2005, Git has evolved and matured to be easy to use and yet retain these initial qualities.
44-
It's incredibly fast, it's very efficient with large projects, and it has an incredible branching system for non-linear development (See <<_git_branching>>).
44+
It's incredibly fast, it's very efficient with large projects, and it has an incredible branching system for non-linear development (See <<ch03-git-branching#ch03-git-branching>>).
4545
//////////////////////////
4646
2005年のその誕生から、Gitは使いやすく発展・成熟してきており、さらにその初期の品質を維持しています。
47-
とても高速で、巨大プロジェクトではとても効率的で、ノンリニア開発のためのすごい分岐システム(branching system)を備えています(<<_git_branching>>参照)。
47+
とても高速で、巨大プロジェクトではとても効率的で、ノンリニア開発のためのすごい分岐システム(branching system)を備えています(<<ch03-git-branching#ch03-git-branching>>参照)。

book/02-git-basics/sections/aliases.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[_git_aliases]]
1+
[[r_git_aliases]]
22
//////////////////////////
33
=== Git Aliases
44
//////////////////////////

0 commit comments

Comments
 (0)