Skip to content

Commit b7ce627

Browse files
author
Aaron Beckerman
committed
fixed typos: syncronize -> synchronize
1 parent d0aaa08 commit b7ce627

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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)