Skip to content

Commit 19e64b8

Browse files
committed
Add comment-out marker that are missing
1 parent 19c5a29 commit 19e64b8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

book/05-distributed-git/sections/contributing.asc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,7 @@ To jessica@githost:simplegit.git
654654
* [new branch] featureA -> featureA
655655
----
656656
657+
//////////////////////////
657658
Jessica emails John to tell him that she's pushed some work into a branch named `featureA` and he can look at it now.
658659
While she waits for feedback from John, Jessica decides to start working on `featureB` with Josie.
659660
To begin, she starts a new feature branch, basing it off the server's `master` branch:
@@ -707,6 +708,7 @@ image::images/managed-team-1.png[Jessica's initial commit history.]
707708
.Jessica のコミット履歴
708709
image::images/managed-team-1.png[Jessica のコミット履歴]
709710
711+
//////////////////////////
710712
She's ready to push up her work, but gets an email from Josie that a branch with some initial work on it was already pushed to the server as `featureBee`.
711713
Jessica first needs to merge those changes in with her own before she can push to the server.
712714
She can then fetch Josie's changes down with `git fetch`:
@@ -761,6 +763,7 @@ Also notice the `-u` flag; this is short for `--set-upstream`, which configures
761763
<<_refspec>> で、Git の refspec の詳細とそれで何ができるのかを説明します。
762764
また、 `-u` オプションが使われていることにも注意しましょう。これは `--set-upstream` オプションの省略形で、のちのちブランチのプッシュ・プルで楽をするための設定です。
763765
766+
//////////////////////////
764767
Next, John emails Jessica to say he's pushed some changes to the `featureA` branch and asks her to verify them.
765768
She runs a `git fetch` to pull down those changes:
766769
//////////////////////////
@@ -1209,7 +1212,6 @@ If you add text between the `---` line and the beginning of the patch (the `diff
12091212
このファイルを編集して、コミットメッセージには書けなかったような情報をメーリングリスト用に追加することもできます。
12101213
`---` の行とパッチの開始位置 ( `diff --git` の行) の間にメッセージを書くと、メールを受信した人はそれを読むことができますが、パッチからは除外されます。
12111214
1212-
<<<<<<< HEAD
12131215
//////////////////////////
12141216
To email this to a mailing list, you can either paste the file into your email program or send it via a command-line program.
12151217
Pasting the text often causes formatting issues, especially with ``smarter'' clients that don't preserve newlines and other whitespace appropriately.
@@ -1226,7 +1228,7 @@ We'll demonstrate how to send a patch via Gmail, which happens to be the email a
12261228
First, you need to set up the imap section in your `~/.gitconfig` file.
12271229
You can set each value separately with a series of `git config` commands, or you can add them manually, but in the end your config file should look something like this:
12281230
//////////////////////////
1229-
まず`~/.gitconfig` ファイルの imap セクションを設定します。
1231+
まず`~/.gitconfig` ファイルの imap セクションを設定します。
12301232
それぞれの値を `git config` コマンドで順に設定してもかまいませんし、このファイルに手で書き加えてもかまいません。最終的に、設定ファイルは次のようになります。
12311233
12321234
[source,ini]

0 commit comments

Comments
 (0)