* [PATCH] Documented --no-checkout option in git-svn
@ 2008-10-30 16:08 _vi
2008-10-30 18:07 ` Deskin Miller
0 siblings, 1 reply; 4+ messages in thread
From: _vi @ 2008-10-30 16:08 UTC (permalink / raw)
To: git; +Cc: gitster, Vitaly "_Vi" Shukela
From: Vitaly "_Vi" Shukela <public_vi@tut.by>
Signed-off-by: Vitaly "_Vi" Shukela <public_vi@tut.by>
---
Documentation/git-svn.txt | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
index 84c8f3c..90784a5 100644
--- a/Documentation/git-svn.txt
+++ b/Documentation/git-svn.txt
@@ -91,6 +91,9 @@ COMMANDS
tracking. The name of the [svn-remote "..."] section in the
.git/config file may be specified as an optional command-line
argument.
+
+--no-checkout
+ Do not checkout latest revision after fetching.
'clone'::
Runs 'init' and 'fetch'. It will automatically create a
@@ -103,6 +106,9 @@ COMMANDS
the working tree; and the 'rebase' command will be able
to update the working tree with the latest changes.
+--no-checkout
+ Do not checkout latest revision after fetching.
+
'rebase'::
This fetches revisions from the SVN parent of the current HEAD
and rebases the current (uncommitted to SVN) work against it.
--
1.5.6.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Documented --no-checkout option in git-svn
2008-10-30 16:08 [PATCH] Documented --no-checkout option in git-svn _vi
@ 2008-10-30 18:07 ` Deskin Miller
2008-10-30 18:20 ` Sam Vilain
0 siblings, 1 reply; 4+ messages in thread
From: Deskin Miller @ 2008-10-30 18:07 UTC (permalink / raw)
To: _vi; +Cc: git, gitster, Vitaly _Vi Shukela
On Thu, Oct 30, 2008 at 06:08:20PM +0200, _vi@list.ru wrote:
> From: Vitaly "_Vi" Shukela <public_vi@tut.by>
>
> Signed-off-by: Vitaly "_Vi" Shukela <public_vi@tut.by>
> ---
> Documentation/git-svn.txt | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
> index 84c8f3c..90784a5 100644
> --- a/Documentation/git-svn.txt
> +++ b/Documentation/git-svn.txt
> @@ -91,6 +91,9 @@ COMMANDS
> tracking. The name of the [svn-remote "..."] section in the
> .git/config file may be specified as an optional command-line
> argument.
> +
> +--no-checkout
> + Do not checkout latest revision after fetching.
This isn't quite how the other options are listed in the source; for one, this
ends up formatted in the final manpage like
--no-checkout Do not checkout latest revision after fetching.
Instead of
--no-checkout
Do not checkout latest revision after fetching.
Also, the wording seems slightly imprecise; in fact, if the repository already
has a checkout, git svn fetch would not attempt to check anything out in its
place, nor will it check anything out if there is a local master branch
already. With clone this is not typically a problem, but in fact it is
possible to clone into a preexisting git repository, so the same concerns
exist.
Deskin Miller
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Documented --no-checkout option in git-svn
2008-10-30 18:07 ` Deskin Miller
@ 2008-10-30 18:20 ` Sam Vilain
2008-10-31 22:36 ` public_vi
0 siblings, 1 reply; 4+ messages in thread
From: Sam Vilain @ 2008-10-30 18:20 UTC (permalink / raw)
To: git, Deskin Miller
Cc: Sam Vilain,
_vi@list.ru, git@vger.kernel.org, gitster@pobox.com, Vitaly _Vi Shukela,
Vitaly "_Vi" Shukela
On Thu, 2008-10-30 at 14:07 -0400, Deskin Miller wrote:
> > +--no-checkout
> > + Do not checkout latest revision after fetching.
>
> This isn't quite how the other options are listed in the source; for one, this
> ends up formatted in the final manpage like
>
> --no-checkout Do not checkout latest revision after fetching.
>
> Instead of
>
> --no-checkout
> Do not checkout latest revision after fetching.
>
> Also, the wording seems slightly imprecise; in fact, if the repository already
> has a checkout, git svn fetch would not attempt to check anything out in its
> place, nor will it check anything out if there is a local master branch
> already. With clone this is not typically a problem, but in fact it is
> possible to clone into a preexisting git repository, so the same concerns
> exist.
I think the wording is close enough; here's a version which looks good
to me and fixes the asciidoc differences.
Subject: git-svn: document --no-checkout option
From: Vitaly "_Vi" Shukela <public_vi@tut.by>
Signed-off-by: Vitaly "_Vi" Shukela <public_vi@tut.by>
Signed-off-by: Sam Vilain <sam@vilain.net>
---
Documentation/git-svn.txt | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
index 84c8f3c..2298512 100644
--- a/Documentation/git-svn.txt
+++ b/Documentation/git-svn.txt
@@ -91,6 +91,9 @@ COMMANDS
tracking. The name of the [svn-remote "..."] section in the
.git/config file may be specified as an optional command-line
argument.
+
+--no-checkout;;
+ Do not checkout the latest revision after fetching.
'clone'::
Runs 'init' and 'fetch'. It will automatically create a
@@ -103,6 +106,9 @@ COMMANDS
the working tree; and the 'rebase' command will be able
to update the working tree with the latest changes.
+--no-checkout;;
+ Do not checkout the latest revision after cloning.
+
'rebase'::
This fetches revisions from the SVN parent of the current HEAD
and rebases the current (uncommitted to SVN) work against it.
--
debian.1.5.6.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Documented --no-checkout option in git-svn
2008-10-30 18:20 ` Sam Vilain
@ 2008-10-31 22:36 ` public_vi
0 siblings, 0 replies; 4+ messages in thread
From: public_vi @ 2008-10-31 22:36 UTC (permalink / raw)
To: Sam Vilain; +Cc: git, Deskin Miller
OK, agree with all changes. This is my the first patch.
/* not including the patch text as it gets broken by Iceweasel. */
Sam Vilain wrote:
> I think the wording is close enough; here's a version which looks good
> to me and fixes the asciidoc differences.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-10-31 23:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-30 16:08 [PATCH] Documented --no-checkout option in git-svn _vi
2008-10-30 18:07 ` Deskin Miller
2008-10-30 18:20 ` Sam Vilain
2008-10-31 22:36 ` public_vi
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).