Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-07 09:05:29 +0300
committerJunio C Hamano <gitster@pobox.com>2019-02-07 09:05:29 +0300
commita1e19004e11dcbc0ceebd92c425ceb1770e52d0b (patch)
treed3d2ab651aaa2766c84b7b971d78ec47ea2403d2 /builtin/describe.c
parentd219b7f3f97ddbea883af228b9f2d845c9c1d390 (diff)
parentc801170b0cbc3fdd44331a53c2b7649687625680 (diff)
Merge branch 'ss/describe-dirty-in-the-right-directory'
"git --work-tree=$there --git-dir=$here describe --dirty" did not work correctly as it did not pay attention to the location of the worktree specified by the user by mistake, which has been corrected. * ss/describe-dirty-in-the-right-directory: t6120: test for describe with a bare repository describe: setup working tree for --dirty
Diffstat (limited to 'builtin/describe.c')
-rw-r--r--builtin/describe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/describe.c b/builtin/describe.c
index 02ec56417a..1409cedce2 100644
--- a/builtin/describe.c
+++ b/builtin/describe.c
@@ -630,6 +630,7 @@ int cmd_describe(int argc, const char **argv, const char *prefix)
struct argv_array args = ARGV_ARRAY_INIT;
int fd, result;
+ setup_work_tree();
read_cache();
refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED,
NULL, NULL, NULL);