Skip to content

Commit a92a8e0

Browse files
committed
Merge remote branch 'ab9/master'
2 parents 1014768 + 5812207 commit a92a8e0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h2>How to Think Like Git</h2>
3838

3939
<p>
4040
Let's start from scratch. Assume you are designing a new source
41-
code management system. How do you do basic version control before
41+
code management system. How did you do basic version control before
4242
you used a tool for it? Chances are that you simply copied your
4343
project directory to save what it looked like at that point.
4444
</p>

remotes/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ <h2>
194194
that is tracked by whatever branch you are currently in. I personally don't much
195195
like this command - I prefer running <code>fetch</code> and <code>merge</code>
196196
seperately. Less magic, less problems. However, if you like this idea, you
197-
can read about it in more detail in the.
197+
can read about it in more detail in the
198198
<a target="new" href="http://www.kernel.org/pub/software/scm/git/docs/git-pull.html">official docs</a>.
199199
</p>
200200

@@ -280,7 +280,7 @@ <h2>
280280
</pre>
281281

282282
<p>Pretty easy. Now if someone clones that repository they will get exactly
283-
what I have committed and all of it's history.</p>
283+
what I have committed and all of its history.</p>
284284

285285
<p>What if I have a topic branch like the 'erlang' branch we created earlier
286286
and I just want to share that? You can just push that branch instead.
@@ -296,7 +296,7 @@ <h2>
296296
* [new branch] erlang -> erlang
297297
</pre>
298298

299-
<p>Now when people clone or fetch from that repository, they'll get a 'erlang'
299+
<p>Now when people clone or fetch from that repository, they'll get an 'erlang'
300300
branch they can look at and merge from. You can push any branch to any
301301
remote repository that you have write access to in this way. If your branch
302302
is already on the server, it will try to update it, if it is not, Git will
@@ -307,7 +307,7 @@ <h2>
307307
at the same time, you both do commits, then she pushes and then you try to
308308
push, Git will by default not allow you to overwrite her changes. Instead,
309309
it basically runs <code>git log</code> on the branch you're trying to push and
310-
makes sure it can see the current tip of the servers branch in your pushes
310+
makes sure it can see the current tip of the server's branch in your push's
311311
history. If it can't see what is on the server in your history, it concludes
312312
that you are out of date and will reject your push. You will rightly have to
313313
fetch, merge then push again - which makes sure you take her changes into

0 commit comments

Comments
 (0)