diff options
| author | Junio C Hamano <junkio@cox.net> | 2006-07-30 13:34:52 -0700 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2006-07-30 13:34:52 -0700 |
| commit | 3fe5dbf57f2512d29cb72c68bdab98957fda7bb3 (patch) | |
| tree | 7fd683371f8812f08e5384f55dcadf099e90f3c4 /http-push.c | |
| parent | 522a98caa5b9b6b99e08c6c72665d59342d6d5e2 (diff) | |
| parent | 7061cf0f205e86613c3a3306fdfedf2a5dcc8a65 (diff) | |
| download | git-3fe5dbf57f2512d29cb72c68bdab98957fda7bb3.tar.xz | |
Merge branch '__/setup-n-mv'
* __/setup-n-mv:
Call setup_git_directory() much earlier
Call setup_git_directory() early
Diffstat (limited to 'http-push.c')
| -rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 47686195cd..4021e7d927 100644 --- a/http-push.c +++ b/http-push.c @@ -2521,7 +2521,7 @@ int main(int argc, char **argv) commit_argv[3] = old_sha1_hex; commit_argc++; } - init_revisions(&revs); + init_revisions(&revs, setup_git_directory()); setup_revisions(commit_argc, commit_argv, &revs, NULL); free(new_sha1_hex); if (old_sha1_hex) { |
