From: Kacper Kornet <kornet@camk.edu.pl>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org
Subject: Re: GIT_WORK_TREE and GIT_DIR with git clone
Date: Sun, 27 Mar 2011 00:37:28 +0100 [thread overview]
Message-ID: <20110326233728.GA9445@camk.edu.pl> (raw)
In-Reply-To: <7vtyep3c1h.fsf@alter.siamese.dyndns.org>
On Sat, Mar 26, 2011 at 12:40:58PM -0700, Junio C Hamano wrote:
> Kacper Kornet <kornet@camk.edu.pl> writes:
> > Is there a reason why git clone does not respect GIT_DIR
> > variable.
> Are you sure it does "not respect GIT_DIR"? When you are running clone
> locally, like that:
> > GIT_WORK_TREE=repo GIT_DIR=repo/.git git clone <path>/repo.git
> you have _two_ repositories that the command operates on on your system,
> the one that you are cloning _from_, and the new one that you are
> creating.
> Which repository does your GIT_DIR talk about?
I would expect that GIT_DIR always talks the new one. For example after:
GIT_WORK_TREE=dir GIT_DIR=dir/.git git clone git://git.kernel.org/pub/scm/gitk/gitk
I would expect to have repo in dir/.git. What happens is that in dir
there is a working tree and in local directory gitk there is a bare
repo. The following patch should fix the issue:
diff --git a/builtin/clone.c b/builtin/clone.c
index c6e10bb..082ee53 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -442,11 +442,14 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
die("working tree '%s' already exists.", work_tree);
}
- if (option_bare || work_tree)
- git_dir = xstrdup(dir);
- else {
+ git_dir = getenv("GIT_DIR");
+ if (option_bare || work_tree) {
+ if (!git_dir)
+ git_dir = xstrdup(dir);
+ } else {
work_tree = dir;
- git_dir = xstrdup(mkpath("%s/.git", dir));
+ if (!git_dir)
+ git_dir = xstrdup(mkpath("%s/.git", dir));
}
if (!option_bare) {
--
Kacper
next prev parent reply other threads:[~2011-03-26 23:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-26 12:58 GIT_WORK_TREE and GIT_DIR with git clone Kacper Kornet
2011-03-26 19:40 ` Junio C Hamano
2011-03-26 23:37 ` Kacper Kornet [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-01-20 15:59 Cosmin Apreutesei
2014-01-21 20:23 ` Junio C Hamano
2014-01-21 21:37 ` Cosmin Apreutesei
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110326233728.GA9445@camk.edu.pl \
--to=kornet@camk.edu.pl \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).