You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A couple of things have changed since open sourcing the first edition. For one, we've moved from Markdown to the amazing Asciidoc format for the text of the book. We've also moved to using O'Reilly's https://atlas.oreilly.com[Atlas platform] for generating continuous builds of the book so all major formats are always available in every language.
44
+
A couple of things have changed since open sourcing the first edition.
45
+
For one, we've moved from Markdown to the amazing Asciidoc format for the text of the book.
46
+
We've also moved to using O'Reilly's https://atlas.oreilly.com[Atlas platform] for generating continuous builds of the book so all major formats are always available in every language.
We've also moved to keeping the translations in separate repositories rather than subdirectories of the English repository. See link:CONTRIBUTING.md[the Contributing document] for more information.
51
+
We've also moved to keeping the translations in separate repositories rather than subdirectories of the English repository.
52
+
See link:CONTRIBUTING.md[the Contributing document] for more information.
The other way to generate e-book files is to do so manually with Asciidoctor. If you run the following you _may_ actually get HTML, Epub, Mobi and PDF output files:
78
+
The other way to generate e-book files is to do so manually with Asciidoctor.
79
+
If you run the following you _may_ actually get HTML, Epub, Mobi and PDF output files:
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.
42
+
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.
ですが、もし Git for Windows 2.x を使っている場合は、`C:\Documents and Settings\All Users\Application Data\Git\config`(Windows XP)か `C:\ProgramData\Git\config` (Windows Vista 以降)が検索されます。
47
45
48
46
//////////////////////////
49
47
==== Your Identity
50
48
//////////////////////////
51
49
==== 個人の識別情報
52
50
53
51
//////////////////////////
54
-
The first thing you should do when you install Git is to set your user name and e-mail address.
52
+
The first thing you should do when you install Git is to set your user name and email address.
55
53
This is important because every Git commit uses this information, and it's immutably baked into the commits you start creating:
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.
68
-
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.
66
+
<<<<<<< HEAD
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.
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.
99
+
Vim and Emacs are popular text editors often used by developers on Unix based systems like Linux and Mac.
100
+
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.
101
101
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.
Copy file name to clipboardExpand all lines: book/01-introduction/sections/installing.asc
+38-20Lines changed: 38 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,9 @@ Gitを使い始める前に、まずはコンピューターでそれを使え
15
15
[NOTE]
16
16
//////////////////////////
17
17
====
18
-
This book was written using Git version *2.0.0*. Though most of the commands we use should work even in ancient versions of Git, some of them might not or might act slightly differently if you're using an older version. Since Git is quite excellent at preserving backwards compatibility, any version after 2.0 should work just fine.
18
+
This book was written using Git version *2.0.0*.
19
+
Though most of the commands we use should work even in ancient versions of Git, some of them might not or might act slightly differently if you're using an older version.
20
+
Since Git is quite excellent at preserving backwards compatibility, any version after 2.0 should work just fine.
19
21
====
20
22
//////////////////////////
21
23
====
@@ -35,14 +37,20 @@ If you're on Fedora for example, you can use yum:
There are also a few ways to install Git on Windows.(((Windows, installing)))
99
107
The most official build is available for download on the Git website.
100
108
Just go to http://git-scm.com/download/win[] and the download will start automatically.
101
-
Note that this is a project called Git for Windows (also called msysGit), which is separate from Git itself; for more information on it, go to http://msysgit.github.io/[].
109
+
Note that this is a project called Git for Windows, which is separate from Git itself; for more information on it, go to https://git-for-windows.github.io/[].
0 commit comments