git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] filter-branch -d: Export GIT_DIR earlier
@ 2009-02-16 13:09 Lars Noschinski
  2009-02-16 13:42 ` Johannes Schindelin
  0 siblings, 1 reply; 5+ messages in thread
From: Lars Noschinski @ 2009-02-16 13:09 UTC (permalink / raw)
  To: git

The improved error handling catches a bug in filter-branch when using
-d pointing to a path outside any git repository:

$ mkdir foo
$ cd foo
$ git init
$ touch bar
$ git add bar
$ git commit -m bar
$ cd ..
$ git clone --bare foo
$ cd foo.git
$ git filter-branch -d /tmp/filter master
fatal: Not a git repository (or any of the parent directories): .git

This error message comes from git for-each-ref in line 224. GIT_DIR is
set correctly by git-sh-setup (to the foo.git repository), but not
exported (yet).
---

This fix is not yet ready for commit, as it lacks a test case.

Writing a test case for this bug, I wonder about the preferred way to use a
directory outside any git repository in a test: Using some directory below
git/t/ will not work, as (in most cases) git is a git repository.

Using the system's temp directory via mktemp() or so directory would work most
of the time - but not always. Any ideas?

  - Lars.

  git-filter-branch.sh |   12 ++++++------
  1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index 27b57b8..9a09ba1 100755
--- a/git-filter-branch.sh
+++ b/git-filter-branch.sh
@@ -220,6 +220,12 @@ die ""
  # Remove tempdir on exit
  trap 'cd ../..; rm -rf "$tempdir"' 0
  
+ORIG_GIT_DIR="$GIT_DIR"
+ORIG_GIT_WORK_TREE="$GIT_WORK_TREE"
+ORIG_GIT_INDEX_FILE="$GIT_INDEX_FILE"
+GIT_WORK_TREE=.
+export GIT_DIR GIT_WORK_TREE
+
  # Make sure refs/original is empty
  git for-each-ref > "$tempdir"/backup-refs || exit
  while read sha1 type name
@@ -234,12 +240,6 @@ do
  	esac
  done < "$tempdir"/backup-refs
  
-ORIG_GIT_DIR="$GIT_DIR"
-ORIG_GIT_WORK_TREE="$GIT_WORK_TREE"
-ORIG_GIT_INDEX_FILE="$GIT_INDEX_FILE"
-GIT_WORK_TREE=.
-export GIT_DIR GIT_WORK_TREE
-
  # The refs should be updated if their heads were rewritten
  git rev-parse --no-flags --revs-only --symbolic-full-name \
  	--default HEAD "$@" > "$tempdir"/raw-heads || exit
-- 
1.6.2.rc0.90.g0753.dirty

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

* Re: [PATCH] filter-branch -d: Export GIT_DIR earlier
  2009-02-16 13:09 [PATCH] filter-branch -d: Export GIT_DIR earlier Lars Noschinski
@ 2009-02-16 13:42 ` Johannes Schindelin
  2009-02-16 14:51   ` Lars Noschinski
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Schindelin @ 2009-02-16 13:42 UTC (permalink / raw)
  To: Lars Noschinski; +Cc: git

Hi,

On Mon, 16 Feb 2009, Lars Noschinski wrote:

> The improved error handling catches a bug in filter-branch when using
> -d pointing to a path outside any git repository:
> 
> $ mkdir foo
> $ cd foo
> $ git init
> $ touch bar
> $ git add bar
> $ git commit -m bar
> $ cd ..
> $ git clone --bare foo
> $ cd foo.git
> $ git filter-branch -d /tmp/filter master
> fatal: Not a git repository (or any of the parent directories): .git
> 
> This error message comes from git for-each-ref in line 224. GIT_DIR is
> set correctly by git-sh-setup (to the foo.git repository), but not
> exported (yet).

Thanks.

> ---
> 
> This fix is not yet ready for commit, as it lacks a test case.
> 
> Writing a test case for this bug, I wonder about the preferred way to use a
> directory outside any git repository in a test: Using some directory below
> git/t/ will not work, as (in most cases) git is a git repository.

How about using a filter-branch call with a filter that echoes GIT_DIR 
into a file, then fails, and then checking the exact contents of GIT_DIR?

Ciao,
Dscho

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

* Re: [PATCH] filter-branch -d: Export GIT_DIR earlier
  2009-02-16 13:42 ` Johannes Schindelin
@ 2009-02-16 14:51   ` Lars Noschinski
  2009-02-16 15:39     ` Johannes Schindelin
  0 siblings, 1 reply; 5+ messages in thread
From: Lars Noschinski @ 2009-02-16 14:51 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

Hello,

* Johannes Schindelin <Johannes.Schindelin@gmx.de> [09-02-16 15:42]:
>> This fix is not yet ready for commit, as it lacks a test case.
>> 
>> Writing a test case for this bug, I wonder about the preferred way to use a
>> directory outside any git repository in a test: Using some directory below
>> git/t/ will not work, as (in most cases) git is a git repository.
>
>How about using a filter-branch call with a filter that echoes GIT_DIR 
>into a file, then fails, and then checking the exact contents of GIT_DIR?

This would not catch this bug: for-each-ref is the only git command
called after changing to the temporary directory and before exporting
GIT_DIR.

It would help only if GIT_DIR would never be exported.

 - Lars.

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

* Re: [PATCH] filter-branch -d: Export GIT_DIR earlier
  2009-02-16 14:51   ` Lars Noschinski
@ 2009-02-16 15:39     ` Johannes Schindelin
  2009-02-17  8:17       ` Lars Noschinski
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Schindelin @ 2009-02-16 15:39 UTC (permalink / raw)
  To: Lars Noschinski; +Cc: git

Hi,

On Mon, 16 Feb 2009, Lars Noschinski wrote:

> * Johannes Schindelin <Johannes.Schindelin@gmx.de> [09-02-16 15:42]:
> > > This fix is not yet ready for commit, as it lacks a test case.
> > > 
> > > Writing a test case for this bug, I wonder about the preferred way to use
> > > a
> > > directory outside any git repository in a test: Using some directory below
> > > git/t/ will not work, as (in most cases) git is a git repository.
> >
> >How about using a filter-branch call with a filter that echoes GIT_DIR into a
> >file, then fails, and then checking the exact contents of GIT_DIR?
> 
> This would not catch this bug: for-each-ref is the only git command
> called after changing to the temporary directory and before exporting
> GIT_DIR.

Right.

Next try: is it not true that we can check that "$tempdir/backup-refs" 
is correct, i.e. identical to what 'for-each-ref' outputs for the desired 
directory?

So we could make a subdirectory, set up a dummy branch with one commit, 
call filter-branch with a tmpdir that is in _another_ subdirectory, with a 
filter that just returns false, so that the tmpdir is not deleted, and 
verify the contents of $tmpdir/backup-refs, no?

Ciao,
Dscho

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

* Re: [PATCH] filter-branch -d: Export GIT_DIR earlier
  2009-02-16 15:39     ` Johannes Schindelin
@ 2009-02-17  8:17       ` Lars Noschinski
  0 siblings, 0 replies; 5+ messages in thread
From: Lars Noschinski @ 2009-02-17  8:17 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

* Johannes Schindelin <Johannes.Schindelin@gmx.de> [09-02-16 18:52]:
>Hi,
>
>On Mon, 16 Feb 2009, Lars Noschinski wrote:
>
>> * Johannes Schindelin <Johannes.Schindelin@gmx.de> [09-02-16 15:42]:
>> > > This fix is not yet ready for commit, as it lacks a test case.
>> > > 
>> > > Writing a test case for this bug, I wonder about the preferred way to use
>> > > a
>> > > directory outside any git repository in a test: Using some directory below
>> > > git/t/ will not work, as (in most cases) git is a git repository.
[...]
>Next try: is it not true that we can check that "$tempdir/backup-refs" 
>is correct, i.e. identical to what 'for-each-ref' outputs for the desired 
>directory?

True.

>So we could make a subdirectory, set up a dummy branch with one commit, 
>call filter-branch with a tmpdir that is in _another_ subdirectory, with a 
>filter that just returns false, so that the tmpdir is not deleted, and 
>verify the contents of $tmpdir/backup-refs, no?

AFAICS $tmpdir is always deleted, filter-branch sets a trap to ensure
this. But using a filter to copy backup-refs elsewhere works. Patch
follows.

  - Lars.

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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-16 13:09 [PATCH] filter-branch -d: Export GIT_DIR earlier Lars Noschinski
2009-02-16 13:42 ` Johannes Schindelin
2009-02-16 14:51   ` Lars Noschinski
2009-02-16 15:39     ` Johannes Schindelin
2009-02-17  8:17       ` Lars Noschinski

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