* [PATCH 1/3] git-imap-send: Allow the program to be run from subdirectories of a git tree.
@ 2008-07-07 8:05 Rob Shearman
2008-07-08 4:10 ` Jeff King
0 siblings, 1 reply; 2+ messages in thread
From: Rob Shearman @ 2008-07-07 8:05 UTC (permalink / raw)
To: git
Call setup_git_directory_gently to allow git-imap-send to be used from
subdirectories of a git tree.
---
imap-send.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/imap-send.c b/imap-send.c
index 1ec1310..89a1532 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -1296,6 +1296,7 @@ main(int argc, char **argv)
/* init the random number generator */
arc4_init();
+ setup_git_directory_gently( NULL );
git_config(git_imap_config, NULL);
if (!imap_folder) {
--
1.5.6.GIT
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 1/3] git-imap-send: Allow the program to be run from subdirectories of a git tree.
2008-07-07 8:05 [PATCH 1/3] git-imap-send: Allow the program to be run from subdirectories of a git tree Rob Shearman
@ 2008-07-08 4:10 ` Jeff King
0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2008-07-08 4:10 UTC (permalink / raw)
To: Rob Shearman; +Cc: git
On Mon, Jul 07, 2008 at 09:05:22AM +0100, Rob Shearman wrote:
> Call setup_git_directory_gently to allow git-imap-send to be used from
> subdirectories of a git tree.
> [...]
> + setup_git_directory_gently( NULL );
I don't think this is right; now we _must_ be in a git tree to run the
command, which was not the case previously. You need to pass a non-NULL
parameter to setup_git_directory_gently, which is where it will store
the "are we in a git dir" return value (even if you don't want to look
at it, if the parameter is NULL, it will die("not a git repository")).
-Peff
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-07-08 4:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-07 8:05 [PATCH 1/3] git-imap-send: Allow the program to be run from subdirectories of a git tree Rob Shearman
2008-07-08 4:10 ` Jeff King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox