From: Junio C Hamano <gitster@pobox.com>
To: "Ciprian Dorin Craciun" <ciprian.craciun@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: setup_git_directory_gently contract question?
Date: Tue, 27 May 2008 15:46:48 -0700 [thread overview]
Message-ID: <7vmymbz7on.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <8e04b5820805270710v3a06e5c2if2dcf3b94ef40c1f@mail.gmail.com> (Ciprian Dorin Craciun's message of "Tue, 27 May 2008 17:10:42 +0300")
"Ciprian Dorin Craciun" <ciprian.craciun@gmail.com> writes:
> Is the function setup_git_directory_gently supposed to change the
> current working directory, or should it keep the initial one?
> What is the meaning of nongit_ok?
Most commands that work from subdirectory use setup_git_directory()
interface, because major parts of the guts of the git internal want you to
be at the top of the work tree (e.g. so that you grab a path out of the
index, and be able to open(2) or lstat(2) that path). A normal sequence
for a command is: (1) use setup_git_directory() to learn "prefix", (2) use
get_pathspec() and/or prefix_path() to add "prefix" to the paths given
from the command to make it a path relative to the work tree, (3) do its
thing. setup_git_directory() chdir's up to the top of the work tree for
this reason.
Some commands can optionally work from even outside a git repository, but
they would want to operate the same way as other comands, when they are
started within a git repository. In such a case, you use "gently"
variant, and give a pointer to int to store an additional return value to
signal you if you are inside a git repository or outside.
* When NULL is given as nongit_ok to gently(), it does not behave gentle
at all. Outside a git repository it dies loudly.
* If you are inside a git repository, it behaves pretty much the same as
setup_git_directory(). "*nongit_ok" is set to zero to signal that you
are inside a git repository.
* If you are outside a git repository, *nongit_ok is set to non-zero so
that the caller can tell that it is not in any git repository's work
tree. There is no need to chdir (nor a sensible place to chdir to) in
this case, so it doesn't.
The caller thinks of the parameter as "are we operating in non-git mode?"
boolean, and the callee (i.e. setup_git_directory_gently()) thinks of it
as "is it ok to be called outside a git repository?" (if it is NULL, the
caller expects to be inside a repository and wants it to barf otherwise).
That is why caller's variable are often called "int nongit", and the
callee's parameter is called "int *nongit_ok".
next prev parent reply other threads:[~2008-05-27 22:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-27 14:10 setup_git_directory_gently contract question? Ciprian Dorin Craciun
2008-05-27 14:35 ` Ciprian Dorin Craciun
2008-05-27 15:32 ` Nguyen Thai Ngoc Duy
2008-05-27 22:46 ` Junio C Hamano [this message]
2008-05-28 7:14 ` Ciprian Dorin Craciun
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=7vmymbz7on.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=ciprian.craciun@gmail.com \
--cc=git@vger.kernel.org \
/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).