git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* git-new-workdir not working right?
@ 2009-04-14  4:09 Caleb Cushing
  2009-04-14 14:47 ` Julian Phillips
  0 siblings, 1 reply; 4+ messages in thread
From: Caleb Cushing @ 2009-04-14  4:09 UTC (permalink / raw
  To: git

before I could do git-new-workdir path/to/repo/.git neworkdirname now
that doesn't seem to work... I actually had to cd to path/to/repo/.git
and do git-new-workdir . ../.../neworkdirname to get it to work. it
was complaining that the .git/ wasn't a git repo.

using git 1.6.2.3

-- 
Caleb Cushing

http://xenoterracide.blogspot.com

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

* Re: git-new-workdir not working right?
  2009-04-14  4:09 git-new-workdir not working right? Caleb Cushing
@ 2009-04-14 14:47 ` Julian Phillips
  2009-04-15 10:31   ` Caleb Cushing
  0 siblings, 1 reply; 4+ messages in thread
From: Julian Phillips @ 2009-04-14 14:47 UTC (permalink / raw
  To: Caleb Cushing; +Cc: git

On Tue, 14 Apr 2009, Caleb Cushing wrote:

> before I could do git-new-workdir path/to/repo/.git neworkdirname now
> that doesn't seem to work... I actually had to cd to path/to/repo/.git
> and do git-new-workdir . ../.../neworkdirname to get it to work. it
> was complaining that the .git/ wasn't a git repo.
>
> using git 1.6.2.3

Works fine for me.  Are you sure you didn't have a typo in your 
original git-new-workdir invocation?  If so, could you supply:

  1) the complete output of running git-new-workdir
  2) the output of "git rev-parse --git-dir" run in path/to/repo/.git

Also, you shouldn't need to supply the .git, so "git new-workdir 
path/to/repo newworkdirname" should also work, have you tried that?

-- 
Julian

  ---
Linux is addictive, I'm hooked!
 	-- MaDsen Wikholm's .sig

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

* Re: git-new-workdir not working right?
  2009-04-14 14:47 ` Julian Phillips
@ 2009-04-15 10:31   ` Caleb Cushing
  2009-04-15 12:22     ` Julian Phillips
  0 siblings, 1 reply; 4+ messages in thread
From: Caleb Cushing @ 2009-04-15 10:31 UTC (permalink / raw
  To: Julian Phillips; +Cc: git

On Tue, Apr 14, 2009 at 10:47 AM, Julian Phillips
<julian@quantumfyre.co.uk> wrote:
> Works fine for me.  Are you sure you didn't have a typo in your original
> git-new-workdir invocation?  If so, could you supply:
>
>  1) the complete output of running git-new-workdir
>  2) the output of "git rev-parse --git-dir" run in path/to/repo/.git
>
> Also, you shouldn't need to supply the .git, so "git new-workdir
> path/to/repo newworkdirname" should also work, have you tried that?
>

git-new-workdir portage/ test
/home/port/portdev/.bin/git-new-workdir: line 58: cd:
/home/port/portdev/tree/portage
.git: No such file or directory
/home/port/portdev/tree/test
cp: cannot stat `/home/port/portdev/tree/HEAD': No such file or directory
fatal: Not a git repository (or any of the parent directories): .git

git-new-workdir portage/.git/ test
/home/port/portdev/.bin/git-new-workdir: line 58: cd:
/home/port/portdev/tree/portage/.git
.: No such file or directory
/home/port/portdev/tree/test
cp: cannot stat `/home/port/portdev/tree/HEAD': No such file or directory
fatal: Not a git repository (or any of the parent directories): .git

git rev-parse --git-dir portage/
fatal: Not a git repository (or any of the parent directories): .git

cd portage/
/home/port/portdev/tree/portage
slave-iv portage $ git rev-parse --git-dir .
.git
.

git-new-workdir . ../test/ << seems to work too.


-- 
Caleb Cushing

http://xenoterracide.blogspot.com

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

* Re: git-new-workdir not working right?
  2009-04-15 10:31   ` Caleb Cushing
@ 2009-04-15 12:22     ` Julian Phillips
  0 siblings, 0 replies; 4+ messages in thread
From: Julian Phillips @ 2009-04-15 12:22 UTC (permalink / raw
  To: Caleb Cushing; +Cc: git

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1994 bytes --]

On Wed, 15 Apr 2009, Caleb Cushing wrote:

> On Tue, Apr 14, 2009 at 10:47 AM, Julian Phillips
> <julian@quantumfyre.co.uk> wrote:
>> Works fine for me.  Are you sure you didn't have a typo in your original
>> git-new-workdir invocation?  If so, could you supply:
>>
>>  1) the complete output of running git-new-workdir
>>  2) the output of "git rev-parse --git-dir" run in path/to/repo/.git
>>
>> Also, you shouldn't need to supply the .git, so "git new-workdir
>> path/to/repo newworkdirname" should also work, have you tried that?
>>
>
> git-new-workdir portage/ test
> /home/port/portdev/.bin/git-new-workdir: line 58: cd:
> /home/port/portdev/tree/portage
> .git: No such file or directory
> /home/port/portdev/tree/test
> cp: cannot stat `/home/port/portdev/tree/HEAD': No such file or directory
> fatal: Not a git repository (or any of the parent directories): .git
>
> git-new-workdir portage/.git/ test
> /home/port/portdev/.bin/git-new-workdir: line 58: cd:
> /home/port/portdev/tree/portage/.git
> .: No such file or directory
> /home/port/portdev/tree/test
> cp: cannot stat `/home/port/portdev/tree/HEAD': No such file or directory
> fatal: Not a git repository (or any of the parent directories): .git
>
> git rev-parse --git-dir portage/
> fatal: Not a git repository (or any of the parent directories): .git
>
> cd portage/
> /home/port/portdev/tree/portage
> slave-iv portage $ git rev-parse --git-dir .
> .git
> .
>
> git-new-workdir . ../test/ << seems to work too.
>

*sighs* oh yes, that old chestnut ...

You're exporting CDPATH, this variable shouldn't be exported.  This is 
likely to cause random shell scripts to break.

Alternatively, Putting "unset CDPATH" at the beginning of git-new-workdir 
should fix it.

This has come up a number of times in the past on the git list.  See, for 
example:

http://thread.gmane.org/gmane.comp.version-control.git/52177/focus=52268

-- 
Julian

  ---
English literature's performing flea.
 		-- Sean O'Casey on P.G. Wodehouse

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

end of thread, other threads:[~2009-04-15 12:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-14  4:09 git-new-workdir not working right? Caleb Cushing
2009-04-14 14:47 ` Julian Phillips
2009-04-15 10:31   ` Caleb Cushing
2009-04-15 12:22     ` Julian Phillips

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).