diff options
author | Jeff King <peff@peff.net> | 2007-12-07 16:26:07 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-08 03:33:24 -0800 |
commit | 46f721c8fee9f1c027f96e2bf987ce6e7d05ab94 (patch) | |
tree | cc538c99132ea4dad626b5b26e7fb576d72b38c0 /wt-status.h | |
parent | c3ce3261281d00bcdd59907e76f421034ccb1261 (diff) | |
download | git-46f721c8fee9f1c027f96e2bf987ce6e7d05ab94.tar.gz |
add status.relativePaths config variable
The output of git-status was recently changed to output relative
paths. Setting this variable to false restores the old behavior for
any old-timers that prefer it.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.h')
-rw-r--r-- | wt-status.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wt-status.h b/wt-status.h index 225fb4d535..63d50f2871 100644 --- a/wt-status.h +++ b/wt-status.h @@ -28,6 +28,7 @@ struct wt_status { int git_status_config(const char *var, const char *value); int wt_status_use_color; +int wt_status_relative_paths; void wt_status_prepare(struct wt_status *s); void wt_status_print(struct wt_status *s); |