Skip to content

Commit

Permalink
Add comment-out marker that are missing, PART 2
Browse files Browse the repository at this point in the history
  • Loading branch information
harupong committed Sep 8, 2015
1 parent 19e64b8 commit d6b279a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions book/08-customizing-git/sections/attributes.asc
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ Here you'll configure Git to use the `docx2txt` program to convert Word document
これは自分で用意しなければなりません。
ここでは、 `docx2txt` を使ってWord文書をテキストファイルに変換した上で、正しく diff が取れるように設定してみましょう。
//////////////////////////
First, you'll need to install `docx2txt`; you can download it from http://docx2txt.sourceforge.net[].
Follow the instructions in the `INSTALL` file to put it somewhere your shell can find it.
Next, you'll write a wrapper script to convert output to the format Git expects.
Expand Down Expand Up @@ -514,6 +515,7 @@ The resulting archive is suitable for deployment work, but like any exported arc
//////////////////////////
この結果作成されたアーカイブはデプロイするのにぴったりです。一方、いったんエクスポートされてしまったアーカイブで開発を続けるのはおすすめできません。
//////////////////////////
==== Merge Strategies
//////////////////////////
==== マージの戦略
Expand Down
1 change: 1 addition & 0 deletions book/08-customizing-git/sections/config.asc
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ The three that are turned on by default are `blank-at-eol`, which looks for spac
//////////////////////////
デフォルトで有効になっている設定は、行末の空白文字を見つける `blank-at-eol` 、ファイル末尾の空白文字を見つける `blank-at-eof` 、行頭のタブ文字より前にある空白文字を見つける `space-before-tab` です。
//////////////////////////
The three that are disabled by default but can be turned on are `indent-with-non-tab`, which looks for lines that begin with spaces instead of tabs (and is controlled by the `tabwidth` option); `tab-in-indent`, which watches for tabs in the indentation portion of a line; and `cr-at-eol`, which tells Git that carriage returns at the end of lines are OK.
//////////////////////////
デフォルトでは無効だけれども有効にすることもできる三つの設定は、行頭がタブ文字でなく空白文字になっている行を見つける `indent-with-non-tab` (空白文字の数は `tabwidth` オプションで制御可能)、行内のインデント部分にあるタブ文字を見つける `tab-in-indent` 、行末のキャリッジリターンを許容する `cr-at-eol` です。
Expand Down

0 comments on commit d6b279a

Please sign in to comment.