Skip to content

Commit 273c737

Browse files
committed
Resolve conflicts
that were left untouched by WinMerge, for some reason
1 parent 224b5e5 commit 273c737

File tree

5 files changed

+5
-39
lines changed

5 files changed

+5
-39
lines changed

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

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -39,30 +39,20 @@ Each level overrides values in the previous level, so values in `.git/config` tr
3939
それぞれのレベルの値は以前のレベルの値を上書きするため、`.git/config`の中の設定値は`/etc/gitconfig`の設定値に優先されます。
4040
4141
//////////////////////////
42-
On Windows systems, Git looks for the `.gitconfig` file in the `$HOME` directory (`C:\Users\$USER` for most people).
43-
It also still looks for `/etc/gitconfig`, although it's relative to the MSys root, which is wherever you decide to install Git on your Windows system when you run the installer.
44-
<<<<<<< HEAD
45-
//////////////////////////
46-
Windows環境下では、Gitは`$HOME`ディレクトリ(たいていは`C:\Users\$USER`)の中の`.gitconfig`ファイルを検索にいきます。
47-
ただし、Gitは`/etc/gitconfig`も見にいきます。この場所は実際には、WindowsシステムにGitをインストールするとGitのインストーラー実行時に決めた場所であり、MSysのルートの場所になります。
48-
=======
4942
However, if you are using Git for Windows 2.x, it is `C:\Documents and Settings\All Users\Application Data\Git\config` on Windows XP, and it is `C:\ProgramData\Git\config` on Windows Vista and newer.
50-
>>>>>>> upstream/master
43+
//////////////////////////
44+
ですが、もし Git for Windows 2.x を使っている場合は、`C:\Documents and Settings\All Users\Application Data\Git\config`(Windows XP)か `C:\ProgramData\Git\config` (Windows Vista 以降)が検索されます。
5145
5246
//////////////////////////
5347
==== Your Identity
5448
//////////////////////////
5549
==== 個人の識別情報
5650
57-
<<<<<<< HEAD
5851
//////////////////////////
59-
The first thing you should do when you install Git is to set your user name and e-mail address.
60-
=======
6152
The first thing you should do when you install Git is to set your user name and email address.
62-
>>>>>>> upstream/master
6353
This is important because every Git commit uses this information, and it's immutably baked into the commits you start creating:
6454
//////////////////////////
65-
Gitをインストールしたときに最初にすべきことは、ユーザー名とE-mailアドレスを設定することです
55+
Gitをインストールしたときに最初にすべきことは、ユーザー名とEmailアドレスを設定することです
6656
全てのGitのコミットはこの情報を用いるため、これは重要で、作成するコミットに永続的に焼き付けられます:
6757
6858
[source,console]
@@ -74,13 +64,10 @@ $ git config --global user.email [email protected]
7464
//////////////////////////
7565
Again, you need to do this only once if you pass the `--global` option, because then Git will always use that information for anything you do on that system.
7666
<<<<<<< HEAD
77-
If you want to override this with a different name or e-mail address for specific projects, you can run the command without the `--global` option when you're in that project.
67+
If you want to override this with a different name or email address for specific projects, you can run the command without the `--global` option when you're in that project.
7868
//////////////////////////
7969
また、もし`--global`オプションを指定するのであれば、Gitはその後、そのシステム上で行なう(訳者注:あるユーザーの)全ての操作に対して常にこの情報を使うようになるため、この操作を行なう必要はたった一度だけです。
80-
もし、違う名前とE-mailアドレスを特定のプロジェクトで上書きしたいのであれば、そのプロジェクトの(訳者注:Gitディレクトリの)中で、`--global`オプション無しでこのコマンドを実行することができます。
81-
=======
82-
If you want to override this with a different name or email address for specific projects, you can run the command without the `--global` option when you're in that project.
83-
>>>>>>> upstream/master
70+
もし、違う名前とEmailアドレスを特定のプロジェクトで上書きしたいのであれば、そのプロジェクトの(訳者注:Gitディレクトリの)中で、`--global`オプション無しでこのコマンドを実行することができます。
8471
8572
//////////////////////////
8673
Many of the GUI tools will help you do this when you first run them.
@@ -109,12 +96,8 @@ $ git config --global core.editor emacs
10996
[WARNING]
11097
//////////////////////////
11198
====
112-
<<<<<<< HEAD
113-
Vim and Emacs are popular text editors often used by developers on Unix based systems like Linux and Mac. If you are not familiar with either of these editors or are on a Windows system, you may need to search for instructions for how to set up your favorite editor with Git.
114-
=======
11599
Vim and Emacs are popular text editors often used by developers on Unix based systems like Linux and Mac.
116100
If you are not familiar with either of these editors or are on a Windows system, you may need to search for instructions for how to set up your favorite editor with Git.
117-
>>>>>>> upstream/master
118101
If you don't set an editor like this and you don't know what Vim or Emacs are, you will likely get into a really confusing state when they are launched.
119102
====
120103
//////////////////////////

book/07-git-tools/sections/rewriting-history.asc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,8 @@ pick a5f4a0d added cat-file
242242
243243
//////////////////////////
244244
to this:
245-
<<<<<<< HEAD
246245
//////////////////////////
247246
から
248-
=======
249-
>>>>>>> upstream/master
250247
251248
[source,console]
252249
----

book/07-git-tools/sections/stashing-cleaning.asc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,7 @@ Stash this hunk [y,n,q,a,d,/,e,?]? y
249249
Saved working directory and index state WIP on master: 1b65b17 added the index file
250250
----
251251
252-
<<<<<<< HEAD
253252
//////////////////////////
254-
=======
255-
>>>>>>> upstream/master
256253
==== Creating a Branch from a Stash
257254
//////////////////////////
258255
==== 隠した変更からのブランチの作成

book/09-git-and-other-scms/sections/client-hg.asc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,11 +218,7 @@ The `.git/info/exclude` file acts just like a `.gitignore`, but isn't included i
218218
//////////////////////////
219219
`.git/info/exclude` ファイルは `.gitignore` と同様の働きをしますが、コミットには含まれません。
220220
221-
<<<<<<< HEAD
222-
223221
//////////////////////////
224-
=======
225-
>>>>>>> upstream/master
226222
===== Workflow
227223
//////////////////////////
228224
===== ワークフロー

book/09-git-and-other-scms/sections/client-tfs.asc

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,6 @@ There are a couple of other considerations you'll want to keep in mind:
425425
* チームのワークフローに Git との協調作業が含まれており、定期的に TFVC との同期を取る場合、 TFVC へ接続する Git リポジトリはひとつだけにしてください。
426426
427427
//////////////////////////
428-
=======
429-
430-
>>>>>>> upstream/master
431428
===== Workflow: `git-tfs`
432429
//////////////////////////
433430
===== ワークフロー: `git-tfs` の場合
@@ -617,11 +614,7 @@ TFVC でブランチを作成するということは、そのブランチが存
617614
git-tfs はリモートブランチ `tfs/featureBee` の *作成は* しましたが、 `HEAD` は相変わらず `master` を指していることに注意してください。
618615
新しく作成したブランチ上で作業をしたい場合は、コミット `1d54865` から新しいコミットを作成することになりますが、この場合は恐らくそのコミットから新しくトピックブランチを作成することになるでしょう。
619616
620-
<<<<<<< HEAD
621-
622617
//////////////////////////
623-
=======
624-
>>>>>>> upstream/master
625618
===== Git and TFS Summary
626619
//////////////////////////
627620
===== Git と TFS のまとめ

0 commit comments

Comments
 (0)