git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH 5/6] user-manual: miscellaneous editing
       [not found] <-1060540797535999820@unknownmsgid>
@ 2007-05-07  7:27 ` Santi Béjar
  2007-05-08  3:07   ` J. Bruce Fields
  0 siblings, 1 reply; 5+ messages in thread
From: Santi Béjar @ 2007-05-07  7:27 UTC (permalink / raw)
  To: J. Bruce Fields; +Cc: Junio C Hamano, git

On 5/7/07, J. Bruce Fields <bfields@citi.umich.edu> wrote:
> From: J. Bruce Fields <bfields@citi.umich.edu>
>
> I cherry-picked some additional miscellaneous fixes from those suggested
> by Santi Béjar, including fixes to:
>
>         - correct discussion of repository/HEAD->repository shortcut
>         - add mention of git-mergetool
>         - add mention of --track
>         - mention "-f" as well as "+" for fetch
>

> Cc: Santi Béjar <sbejar@gmail.com>

You forgot to CC: the e-mail to me :-)

> diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt
> index c292b4d..67f5b9b 100644
> --- a/Documentation/user-manual.txt
> +++ b/Documentation/user-manual.txt

[...]

> @@ -1830,14 +1836,14 @@ Now, assume your personal repository is in the directory ~/proj.  We
>  first create a new clone of the repository:
>
>  -------------------------------------------------
> -$ git clone --bare proj-clone.git
> +$ git clone --bare proj.git
>  -------------------------------------------------

You missed the ~/proj as in:

$ git clone --bare ~/proj proj.git

What do you think about the rest of my changes, in particular:

@@ -2374,7 +2388,6 @@ then the following commands will all do the same thing:
 -------------------------------------------------
 $ git fetch git://example.com/proj.git master:ref/remotes/example/master
 $ git fetch example master:ref/remotes/example/master
-$ git fetch example example/master
 $ git fetch example
 -------------------------------------------------

Santi

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 5/6] user-manual: miscellaneous editing
  2007-05-07  7:27 ` [PATCH 5/6] user-manual: miscellaneous editing Santi Béjar
@ 2007-05-08  3:07   ` J. Bruce Fields
  2007-05-08  3:34     ` [PATCH] user-manual: fix clone and fetch typos J. Bruce Fields
  0 siblings, 1 reply; 5+ messages in thread
From: J. Bruce Fields @ 2007-05-08  3:07 UTC (permalink / raw)
  To: Santi Béjar; +Cc: Junio C Hamano, git

On Mon, May 07, 2007 at 09:27:40AM +0200, Santi Béjar wrote:
> On 5/7/07, J. Bruce Fields <bfields@citi.umich.edu> wrote:
> >Cc: Santi Béjar <sbejar@gmail.com>
>
> You forgot to CC: the e-mail to me :-)

The version of git-send-email I was using is supposed to do that
automatically based on the inlined Cc: line.  Did it not do that?

> >@@ -1830,14 +1836,14 @@ Now, assume your personal repository is in the 
> >directory ~/proj.  We
> > first create a new clone of the repository:
> >
> > -------------------------------------------------
> >-$ git clone --bare proj-clone.git
> >+$ git clone --bare proj.git
> > -------------------------------------------------
> 
> You missed the ~/proj as in:
> 
> $ git clone --bare ~/proj proj.git

Whoops, thanks.

> What do you think about the rest of my changes, in particular:
> 
> @@ -2374,7 +2388,6 @@ then the following commands will all do the same 
> thing:
> -------------------------------------------------
> $ git fetch git://example.com/proj.git master:ref/remotes/example/master
> $ git fetch example master:ref/remotes/example/master
> -$ git fetch example example/master
> $ git fetch example
> -------------------------------------------------

Yes, you're correct, thanks for your persistence.

The others--I don't remember.  I'll take a quick look.  If you want to
be sure they'll all be considered, you could update the patch and
resend.

--b.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] user-manual: fix clone and fetch typos
  2007-05-08  3:07   ` J. Bruce Fields
@ 2007-05-08  3:34     ` J. Bruce Fields
  2007-05-08  3:41       ` J. Bruce Fields
  0 siblings, 1 reply; 5+ messages in thread
From: J. Bruce Fields @ 2007-05-08  3:34 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Santi Béjar, git

More typo fixes from Santi Béjar, plus a couple other mistakes I noticed
along the way.

Cc: Santi Béjar <sbejar@gmail.com>
Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
---
 Documentation/user-manual.txt |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt
index 67f5b9b..13db969 100644
--- a/Documentation/user-manual.txt
+++ b/Documentation/user-manual.txt
@@ -1836,12 +1836,12 @@ Now, assume your personal repository is in the directory ~/proj.  We
 first create a new clone of the repository:
 
 -------------------------------------------------
-$ git clone --bare proj.git
+$ git clone --bare ~/proj proj.git
 -------------------------------------------------
 
-The resulting directory proj.git will contains a "bare" git
-repository--it is just the contents of the ".git" directory, without
-a checked-out copy of a working directory.
+The resulting directory proj.git contains a "bare" git repository--it is
+just the contents of the ".git" directory, without a checked-out copy of
+a working directory.
 
 Next, copy proj.git to the server where you plan to host the
 public repository.  You can use scp, rsync, or whatever is most
@@ -2372,9 +2372,8 @@ $ git config remote.example.fetch master:refs/remotes/example/master
 then the following commands will all do the same thing:
 
 -------------------------------------------------
-$ git fetch git://example.com/proj.git master:ref/remotes/example/master
-$ git fetch example master:ref/remotes/example/master
-$ git fetch example example/master
+$ git fetch git://example.com/proj.git master:refs/remotes/example/master
+$ git fetch example master:refs/remotes/example/master
 $ git fetch example
 -------------------------------------------------
 
-- 
1.5.1.1.98.gedb4f

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] user-manual: fix clone and fetch typos
  2007-05-08  3:34     ` [PATCH] user-manual: fix clone and fetch typos J. Bruce Fields
@ 2007-05-08  3:41       ` J. Bruce Fields
  2007-05-08 10:12         ` Karl Hasselström
  0 siblings, 1 reply; 5+ messages in thread
From: J. Bruce Fields @ 2007-05-08  3:41 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Santi Béjar, git

On Mon, May 07, 2007 at 11:34:26PM -0400, J. Bruce Fields wrote:
> More typo fixes from Santi Béjar, plus a couple other mistakes I noticed
> along the way.
> 
> Cc: Santi Béjar <sbejar@gmail.com>
> Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>

Hm.  I still see

	Content-Type:   text/plain; charset=iso-8859-1

in the headers, even in the copy saved in my sent-mail folder.  My
locale seems to be set to something utf-8-ish everywhere, though.  Is
there some odd mutt configuration setting I'm missing someplace?
Character sets mystify me....

--b.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] user-manual: fix clone and fetch typos
  2007-05-08  3:41       ` J. Bruce Fields
@ 2007-05-08 10:12         ` Karl Hasselström
  0 siblings, 0 replies; 5+ messages in thread
From: Karl Hasselström @ 2007-05-08 10:12 UTC (permalink / raw)
  To: J. Bruce Fields; +Cc: Junio C Hamano, Santi Béjar, git

On 2007-05-07 23:41:29 -0400, J. Bruce Fields wrote:

> Hm.  I still see
>
>       Content-Type:   text/plain; charset=iso-8859-1
>
> in the headers

But this time, it looks good to me. This is probably because the
headers say the body is QP-encoded latin1:

  Content-Type:   text/plain; charset=iso-8859-1
  Content-Transfer-Encoding: QUOTED-PRINTABLE

and the body actually _is_ QP-encoded latin1:

  More typo fixes from Santi B=E9jar

Note how the "é" is encoded with only one byte this time, like it's
supposed to in latin1.

-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-05-08 10:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <-1060540797535999820@unknownmsgid>
2007-05-07  7:27 ` [PATCH 5/6] user-manual: miscellaneous editing Santi Béjar
2007-05-08  3:07   ` J. Bruce Fields
2007-05-08  3:34     ` [PATCH] user-manual: fix clone and fetch typos J. Bruce Fields
2007-05-08  3:41       ` J. Bruce Fields
2007-05-08 10:12         ` Karl Hasselström

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).