[or-cvs] [githax/master] Minor tweaks found while reading the howto.
Nick Mathewson
nickm at seul.org
Fri May 8 16:25:34 UTC 2009
Author: Karsten Loesing <karsten.loesing at gmx.net>
Date: Wed, 6 May 2009 00:14:34 +0200
Subject: Minor tweaks found while reading the howto.
Commit: 4aeda1542142f9e31763d9dbffd79855873b11d1
---
doc/Howto.txt | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/doc/Howto.txt b/doc/Howto.txt
index 07d55bb..04690f8 100644
--- a/doc/Howto.txt
+++ b/doc/Howto.txt
@@ -15,7 +15,7 @@ If you know how to use Git
--------------------------
If you know how to use Git, all you need to know is that the official
-Thandy repository is at
+PROJECT repository is at
git://git.torproject.org/git/PROJECT
and that if you're updating the official repository (we will tell you
if you're such a person), ssh access is at:
@@ -130,7 +130,7 @@ This asks us for a commit message, and commits every changed file.
If we only want to commit some files, or if we want to add new files
that were not previously in the repository, we use the 'git add' command
-to tell Git what to commit, and then we use 'git commit' without the
+to tell Git what to add, and then we use 'git commit' without the
'-a' flag to commit them.
-----
@@ -249,7 +249,7 @@ instead of letting `git merge` create an implicit merge commit:
(Rebase with caution! See notes on rebasing below.)
Now, what should we do about our local ftp branch? It's still based on
-the pre-pull version. We have a few choices.
+the pre-pull version. We have a few choices.
1. We could let it stay based on the old version until we're ready to
merge it into our master branch, or send it in as a patch, or
@@ -274,7 +274,7 @@ the pre-pull version. We have a few choices.
% git rebase master
-----
- This is a fine thing to do on a _local_ branch, but you should never
+ Rebasing is a fine thing to do on a _local_ branch, but you should never
do it (or any other kind of "history rewriting") on a branch you have
published to others.
@@ -361,7 +361,7 @@ have made in the meantime, type:
-----
This fast-forwards the branch if you haven't made changes, or first
-applies the changes from nick's repository and the replays your changes on
+applies the changes from nick's repository and then replays your changes on
top of the result. If you then want to make a patch based on your changes
to send to nick, it's easy. Use git format-patch (see above).
@@ -389,3 +389,4 @@ http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html
And the Git tutorial which is also a good guide to get started:
http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html
+
--
1.5.6.5
More information about the tor-commits
mailing list