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
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,6 @@ assignees: ''
13
13
<!-- * This bug is about the Pro Git book, version 2, English language. -->
14
14
<!-- * This bug is about the book as found on the [website](https://www.git-scm.com/book/en/v2) or the pdf. -->
15
15
<!-- * If you found an issue in the pdf/epub/mobi files, you've checked if the problem is also present in the Pro Git book on the [website](https://www.git-scm.com/book/en/v2). -->
16
-
<!-- * This bug is **not** about a translation, if so please file a bug with the translation project. You can find a table of translation projects here: [progit2/TRANSLATING.md](https://github.com/progit/progit2/blob/master/TRANSLATING.md) -->
17
-
<!-- * This bug is **not** about the git-scm.com site, if so please file a bug here: [git-scm.com/issues/new](https://github.com/git/git-scm.com/issues/new) -->
18
-
<!-- * This bug is **not** about git the program itself, if so please file a bug here: [git-scm.com/community](https://git-scm.com/community) -->
19
-
<!-- * This bug is **not** about Git for Windows, if so please file a bug here: [git-for-windows/git](https://github.com/git-for-windows/git). -->
20
16
21
17
**Which version of the book is affected?**
22
18
<!-- It's important for us to know if the problem is in the source or in the tooling for the pdf/epub/mobi files. -->
Copy file name to clipboardExpand all lines: book/01-introduction/sections/about-version-control.asc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ However, this setup also has some serious downsides.
44
44
The most obvious is the single point of failure that the centralized server represents.
45
45
If that server goes down for an hour, then during that hour nobody can collaborate at all or save versioned changes to anything they're working on.
46
46
If the hard disk the central database is on becomes corrupted, and proper backups haven't been kept, you lose absolutely everything -- the entire history of the project except whatever single snapshots people happen to have on their local machines.
47
-
Local VCS systems suffer from this same problem -- whenever you have the entire history of the project in a single place, you risk losing everything.
47
+
Local VCSs suffer from this same problem -- whenever you have the entire history of the project in a single place, you risk losing everything.
Copy file name to clipboardExpand all lines: book/02-git-basics/sections/getting-a-repository.asc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ At this point, you have a Git repository with tracked files and an initial commi
57
57
==== Cloning an Existing Repository
58
58
59
59
If you want to get a copy of an existing Git repository -- for example, a project you'd like to contribute to -- the command you need is `git clone`.
60
-
If you're familiar with other VCS systems such as Subversion, you'll notice that the command is "clone" and not "checkout".
60
+
If you're familiar with other VCSs such as Subversion, you'll notice that the command is "clone" and not "checkout".
61
61
This is an important distinction -- instead of getting just a working copy, Git receives a full copy of nearly all data that the server has.
62
62
Every version of every file for the history of the project is pulled down by default when you run `git clone`.
63
63
In fact, if your server disk gets corrupted, you can often use nearly any of the clones on any client to set the server back to the state it was in when it was cloned (you may lose some server-side hooks and such, but all the versioned data would be there -- see <<ch04-git-on-the-server#_getting_git_on_a_server>> for more details).
Copy file name to clipboardExpand all lines: book/02-git-basics/sections/remotes.asc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@ $ git remote show origin
179
179
----
180
180
181
181
It lists the URL for the remote repository as well as the tracking branch information.
182
-
The command helpfully tells you that if you're on the `master` branch and you run `git pull`, it will automatically merge in the `master` branch on the remote after it fetches all the remote references.
182
+
The command helpfully tells you that if you're on the `master` branch and you run `git pull`, it will automatically merge the remote's `master` branch into the local one after it has been fetched.
183
183
It also lists all the remote references it has pulled down.
184
184
185
185
That is a simple example you're likely to encounter.
0 commit comments