* git-{diff,ls}-files from a subdirectory fails ...
@ 2007-10-24  1:20 Karl Hasselström
  2007-10-24 10:06 ` Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: Karl Hasselström @ 2007-10-24  1:20 UTC (permalink / raw)
  To: git
... when GIT_DIR is specified.
I have a repository at ~/stgit-lib. With cwd at the top of the tree,
things work as expected when I set all those fancy envoronment
variables:
  kha@yoghurt:~/stgit-lib> git-diff-files --name-only
  stgit/utillib.py
  kha@yoghurt:~/stgit-lib> GIT_DIR=/home/kha/stgit-lib/.git GIT_INDEX_FILE=/home/kha/stgit-lib/.git/index GIT_WORK_TREE=/home/kha/stgit-lib git-diff-files --name-only
  stgit/utillib.py
However, it doen't seem to work from a subdirectory:
  kha@yoghurt:~/stgit-lib/stgit> git-diff-files --name-only
  stgit/utillib.py
  kha@yoghurt:~/stgit-lib/stgit> GIT_DIR=/home/kha/stgit-lib/.git GIT_INDEX_FILE=/home/kha/stgit-lib/.git/index GIT_WORK_TREE=/home/kha/stgit-lib git-diff-files --name-only | wc
      170     170    3560
Instead of just the one changed file, I get a list of what looks like
all the files in the project, suggesting that maybe git assumes I'm at
the root of the worktree when I'm not.
git-ls-files seems to behave the same way. Bug or user error?
-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle
^ permalink raw reply	[flat|nested] 4+ messages in thread- * Re: git-{diff,ls}-files from a subdirectory fails ...
  2007-10-24  1:20 git-{diff,ls}-files from a subdirectory fails Karl Hasselström
@ 2007-10-24 10:06 ` Johannes Schindelin
  2007-10-24 10:40   ` Karl Hasselström
  0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2007-10-24 10:06 UTC (permalink / raw)
  To: Karl Hasselström; +Cc: git
Hi,
On Wed, 24 Oct 2007, Karl Hasselstr?m wrote:
> ... when GIT_DIR is specified.
> 
> I have a repository at ~/stgit-lib. With cwd at the top of the tree,
> things work as expected when I set all those fancy envoronment
> variables:
> 
>   kha@yoghurt:~/stgit-lib> git-diff-files --name-only
>   stgit/utillib.py
> 
>   kha@yoghurt:~/stgit-lib> GIT_DIR=/home/kha/stgit-lib/.git GIT_INDEX_FILE=/home/kha/stgit-lib/.git/index GIT_WORK_TREE=/home/kha/stgit-lib git-diff-files --name-only
>   stgit/utillib.py
> 
> However, it doen't seem to work from a subdirectory:
> 
>   kha@yoghurt:~/stgit-lib/stgit> git-diff-files --name-only
>   stgit/utillib.py
> 
>   kha@yoghurt:~/stgit-lib/stgit> GIT_DIR=/home/kha/stgit-lib/.git GIT_INDEX_FILE=/home/kha/stgit-lib/.git/index GIT_WORK_TREE=/home/kha/stgit-lib git-diff-files --name-only | wc
>       170     170    3560
>From looking at it (very) briefly, it seems that you encountered the same 
bug that was fixed in
dd5c8af176bb935a0b01a7dc2d5e022565c3aac3(Fix setup_git_directory_gently() 
with relative GIT_DIR & GIT_WORK_TREE).
IOW if you run git version v1.5.3.4-14-gdd5c8af or newer, you should not 
experience this.
Hth,
Dscho
^ permalink raw reply	[flat|nested] 4+ messages in thread
- * Re: git-{diff,ls}-files from a subdirectory fails ...
  2007-10-24 10:06 ` Johannes Schindelin
@ 2007-10-24 10:40   ` Karl Hasselström
  2007-10-24 11:26     ` Karl Hasselström
  0 siblings, 1 reply; 4+ messages in thread
From: Karl Hasselström @ 2007-10-24 10:40 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git
On 2007-10-24 11:06:43 +0100, Johannes Schindelin wrote:
> On Wed, 24 Oct 2007, Karl Hasselström wrote:
>
> > However, it doen't seem to work from a subdirectory:
> >
> >   kha@yoghurt:~/stgit-lib/stgit> git-diff-files --name-only
> >   stgit/utillib.py
> >
> >   kha@yoghurt:~/stgit-lib/stgit> GIT_DIR=/home/kha/stgit-lib/.git GIT_INDEX_FILE=/home/kha/stgit-lib/.git/index GIT_WORK_TREE=/home/kha/stgit-lib git-diff-files --name-only | wc
> >       170     170    3560
>
> From looking at it (very) briefly, it seems that you encountered the
> same bug that was fixed in
>
> dd5c8af176bb935a0b01a7dc2d5e022565c3aac3(Fix setup_git_directory_gently()
> with relative GIT_DIR & GIT_WORK_TREE).
>
> IOW if you run git version v1.5.3.4-14-gdd5c8af or newer, you should
> not experience this.
Thanks for the pointer; that looks like it might indeed fix this bug.
Will hopefully have time to verify later today.
-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle
^ permalink raw reply	[flat|nested] 4+ messages in thread
- * Re: git-{diff,ls}-files from a subdirectory fails ...
  2007-10-24 10:40   ` Karl Hasselström
@ 2007-10-24 11:26     ` Karl Hasselström
  0 siblings, 0 replies; 4+ messages in thread
From: Karl Hasselström @ 2007-10-24 11:26 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git
On 2007-10-24 12:40:55 +0200, Karl Hasselström wrote:
> On 2007-10-24 11:06:43 +0100, Johannes Schindelin wrote:
>
> > IOW if you run git version v1.5.3.4-14-gdd5c8af or newer, you
> > should not experience this.
>
> Thanks for the pointer; that looks like it might indeed fix this
> bug. Will hopefully have time to verify later today.
It works! Very timely bugfix ...
-- 
Karl Hasselström, kha@treskal.com
      www.treskal.com/kalle
^ permalink raw reply	[flat|nested] 4+ messages in thread
 
 
end of thread, other threads:[~2007-10-24 11:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-24  1:20 git-{diff,ls}-files from a subdirectory fails Karl Hasselström
2007-10-24 10:06 ` Johannes Schindelin
2007-10-24 10:40   ` Karl Hasselström
2007-10-24 11:26     ` 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).