Skip to content

Commit 43d301a

Browse files
committed
Merge remote branch 'nvl/master'
2 parents 675782f + ed7cef1 commit 43d301a

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
_site
2+
*~

basic/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ <h2>
8383
</pre>
8484

8585
<p class="aside">
86-
It is also common to recusively add all files in a new project by specifying
86+
It is also common to recursively add all files in a new project by specifying
8787
the current working directory like this: <code>git add .</code>. Since Git
8888
will recursively add all files under a directory you give it, if you give it
8989
the current working directory, it will simply start tracking every file

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ <h2>How to Think Like Git</h2>
9898
how they differ or pull content out of them, etc.
9999
</p>
100100

101-
<center><img src="/images/snapshots.png"/></center>
101+
<center><img src="./images/snapshots.png"/></center>
102102

103103
<p>
104104
If you think about Git

remotes/index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ <h2>
1515
so far have been done locally, just updating a local database.
1616
To collaborate with other developers in Git, you have to put all that
1717
data on a server that the other developers have access to. The way Git
18-
does this is to syncronize your data with another repository. There
18+
does this is to synchronize your data with another repository. There
1919
is no real difference between a server and a client - a Git repository
20-
is a Git repository and you can syncronize between any two easily.
20+
is a Git repository and you can synchronize between any two easily.
2121
</p>
2222

2323
<p>Once you have a Git repository, either one that you set up on your
@@ -54,12 +54,12 @@ <h2>
5454

5555
<p>Unlike centralized version control systems that have a client that is
5656
very different from a server, Git repositories are all basically equal and
57-
you simply syncronize between them. This makes it easy to have more than
57+
you simply synchronize between them. This makes it easy to have more than
5858
one remote repository - you can have some that you have read-only access to
5959
and others that you can write to as well.</p>
6060

6161
<p>So that you don't have to use the full URL of a remote repository every
62-
time you want to syncronize with it, Git stores an alias or nickname for
62+
time you want to synchronize with it, Git stores an alias or nickname for
6363
each remote repository URL you are interested in. You use the
6464
<code>git remote</code> command to manage this list of remote repos that
6565
you care about.</p>
@@ -180,12 +180,12 @@ <h2>
180180
<div class="block">
181181

182182
<p>Git has two commands to update itself from a remote repository.
183-
<code>git fetch</code> will syncronize you with another repo, pulling down any data
183+
<code>git fetch</code> will synchronize you with another repo, pulling down any data
184184
that you do not have locally and giving you bookmarks to where each branch on
185-
that remote was when you syncronized. These are called "remote branches" and are
185+
that remote was when you synchronized. These are called "remote branches" and are
186186
identical to local branches except that Git will not allow you to check them out -
187187
however, you can merge from them, diff them to other branches, run history logs on
188-
them, etc. You do all of that stuff locally after you syncronize.
188+
them, etc. You do all of that stuff locally after you synchronize.
189189
</p>
190190

191191
<p>The second command that will fetch down new data from a remote server is
@@ -238,11 +238,11 @@ <h2>
238238
</p>
239239

240240
<p>If you have more than one remote repository, you can either fetch from specific
241-
ones by running <code>git fetch [alias]</code> or you can tell Git to syncronize
241+
ones by running <code>git fetch [alias]</code> or you can tell Git to synchronize
242242
with all of your remotes by running <code>git fetch --all</code>.
243243

244244
<p class="nutshell">
245-
<b>In a nutshell</b> you run <code>git fetch [alias]</code> to syncronize your
245+
<b>In a nutshell</b> you run <code>git fetch [alias]</code> to synchronize your
246246
repository with a remote repository, fetching all the data it has that you do
247247
not into branch references locally for merging and whatnot.
248248
</p>

0 commit comments

Comments
 (0)