git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4/6] Improve error message for git-filter-branch
@ 2009-02-19  7:36 John Tapsell
  2009-02-19  8:44 ` Sverre Rabbelier
  2009-02-19 14:19 ` John Tapsell
  0 siblings, 2 replies; 5+ messages in thread
From: John Tapsell @ 2009-02-19  7:36 UTC (permalink / raw)
  To: Git Mailing List

Tell the user that a backup (original) already exists, and how to solve
this problem (with -f option)
---
 git-filter-branch.sh |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index 27b57b8..1ca45e2 100755
--- a/git-filter-branch.sh
+++ b/git-filter-branch.sh
@@ -226,7 +226,8 @@ while read sha1 type name
 do
 	case "$force,$name" in
 	,$orig_namespace*)
-		die "Namespace $orig_namespace not empty"
+		die "Cannot backup - a previous backup already exists in $orig_namespace\n" \
+		    "Force overwriting the backup with -f"
 	;;
 	t,$orig_namespace*)
 		git update-ref -d "$name" $sha1
-- 
1.6.2.rc1.3.g7d31b.dirty

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

* Re: [PATCH 4/6] Improve error message for git-filter-branch
  2009-02-19  7:36 [PATCH 4/6] Improve error message for git-filter-branch John Tapsell
@ 2009-02-19  8:44 ` Sverre Rabbelier
  2009-02-19 14:19 ` John Tapsell
  1 sibling, 0 replies; 5+ messages in thread
From: Sverre Rabbelier @ 2009-02-19  8:44 UTC (permalink / raw)
  To: John Tapsell; +Cc: Git Mailing List

Heya,

On Thu, Feb 19, 2009 at 08:36, John Tapsell <johnflux@gmail.com> wrote:
> Tell the user that a backup (original) already exists, and how to solve
> this problem (with -f option)

Very helpful, I like it :)! Although perhaps s/Cannot backup/Cannot
create a new backup/ ?

-- 
Cheers,

Sverre Rabbelier

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

* Re: [PATCH 4/6] Improve error message for git-filter-branch
  2009-02-19  7:36 [PATCH 4/6] Improve error message for git-filter-branch John Tapsell
  2009-02-19  8:44 ` Sverre Rabbelier
@ 2009-02-19 14:19 ` John Tapsell
  2009-02-19 15:03   ` Johannes Schindelin
  1 sibling, 1 reply; 5+ messages in thread
From: John Tapsell @ 2009-02-19 14:19 UTC (permalink / raw)
  To: Git Mailing List

2009/2/19 John Tapsell <johnflux@gmail.com>:
> Tell the user that a backup (original) already exists, and how to solve
> this problem (with -f option)


"Oh, and also all are:
Signed-off-by: John Tapsell <johnflux@gmail.com>"

> ---
>  git-filter-branch.sh |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/git-filter-branch.sh b/git-filter-branch.sh
> index 27b57b8..1ca45e2 100755
> --- a/git-filter-branch.sh
> +++ b/git-filter-branch.sh
> @@ -226,7 +226,8 @@ while read sha1 type name
>  do
>        case "$force,$name" in
>        ,$orig_namespace*)
> -               die "Namespace $orig_namespace not empty"
> +               die "Cannot backup - a previous backup already exists in $orig_namespace\n" \
> +                   "Force overwriting the backup with -f"
>        ;;
>        t,$orig_namespace*)
>                git update-ref -d "$name" $sha1
> --
> 1.6.2.rc1.3.g7d31b.dirty
>
>
>

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

* Re: [PATCH 4/6] Improve error message for git-filter-branch
  2009-02-19 14:19 ` John Tapsell
@ 2009-02-19 15:03   ` Johannes Schindelin
  2009-02-19 15:13     ` Sverre Rabbelier
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Schindelin @ 2009-02-19 15:03 UTC (permalink / raw)
  To: John Tapsell; +Cc: Git Mailing List

Hi,

On Thu, 19 Feb 2009, John Tapsell wrote:

> 2009/2/19 John Tapsell <johnflux@gmail.com>:
> > Tell the user that a backup (original) already exists, and how to solve
> > this problem (with -f option)
> 
> 
> "Oh, and also all are:
> Signed-off-by: John Tapsell <johnflux@gmail.com>"

Might be nice to resend it so that the maintainer has less work, no?

Also might be nice to cut the complete crap after the only piece of 
information in your mail:

> 
> > ---
> >  git-filter-branch.sh |    3 ++-
> >  1 files changed, 2 insertions(+), 1 deletions(-)
> >
> > diff --git a/git-filter-branch.sh b/git-filter-branch.sh
> > index 27b57b8..1ca45e2 100755
> > --- a/git-filter-branch.sh
> > +++ b/git-filter-branch.sh
> > @@ -226,7 +226,8 @@ while read sha1 type name
> >  do
> >        case "$force,$name" in
> >        ,$orig_namespace*)
> > -               die "Namespace $orig_namespace not empty"
> > +               die "Cannot backup - a previous backup already exists in $orig_namespace\n" \
> > +                   "Force overwriting the backup with -f"
> >        ;;
> >        t,$orig_namespace*)
> >                git update-ref -d "$name" $sha1
> > --
> > 1.6.2.rc1.3.g7d31b.dirty
> >
> >
> >
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [PATCH 4/6] Improve error message for git-filter-branch
  2009-02-19 15:03   ` Johannes Schindelin
@ 2009-02-19 15:13     ` Sverre Rabbelier
  0 siblings, 0 replies; 5+ messages in thread
From: Sverre Rabbelier @ 2009-02-19 15:13 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: John Tapsell, Git Mailing List

On Thu, Feb 19, 2009 at 16:03, Johannes Schindelin
<Johannes.Schindelin@gmx.de> wrote:
> Might be nice to resend it so that the maintainer has less work, no?

Junio said it was ok to ask him to forge and fixup if desired in the
other thread.

> Also might be nice to cut the complete crap after the only piece of
> information in your mail:

Somehow you failed to do so yourself ;).


-- 
Cheers,

Sverre Rabbelier

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

end of thread, other threads:[~2009-02-19 15:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-19  7:36 [PATCH 4/6] Improve error message for git-filter-branch John Tapsell
2009-02-19  8:44 ` Sverre Rabbelier
2009-02-19 14:19 ` John Tapsell
2009-02-19 15:03   ` Johannes Schindelin
2009-02-19 15:13     ` Sverre Rabbelier

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).