Re: [PATCH] Do check_repository_format() early
From: Nguyen Thai Ngoc Duy <hidden>
Date: 2016-06-15 22:43:54
On Nov 29, 2007 12:05 AM, Johannes Schindelin [off-list ref] wrote:
Hi, On Wed, 28 Nov 2007, Nguyen Thai Ngoc Duy wrote:quoted
@@ -246,8 +246,13 @@ const char *setup_git_directory_gently(int *nongit_ok) static char buffer[1024 + 1]; const char *retval; - if (!work_tree_env) - return set_work_tree(gitdirenv); + if (!work_tree_env) { + retval = set_work_tree(gitdirenv); + /* config may override worktree */ + check_repository_format(); + return retval; + } + check_repository_format();Why not move this check before the if? Other than that, ACK.
If so it would be called twice if work_tree_env is not set.
Ciao, Dscho
-- Duy