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
path: root/path.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-07-31 00:52:14 +0300
committerJunio C Hamano <gitster@pobox.com>2017-07-31 00:52:14 +0300
commitaf0178aec7c38cb17bc641bc361656cc90bc6b79 (patch)
tree0d26db4f796c29dd208ceb567f2022bad65c7ca1 /path.c
parentd61226c1118f749280c050555d83560ca0f3bf71 (diff)
parent8d7f72f176ea133c16e55f386a0b79a1cd46ff69 (diff)
Merge tag 'v2.8.6' into maint-2.9
Git 2.8.6
Diffstat (limited to 'path.c')
-rw-r--r--path.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/path.c b/path.c
index 17551c4834..0778ff03f9 100644
--- a/path.c
+++ b/path.c
@@ -1222,6 +1222,11 @@ int is_ntfs_dotgit(const char *name)
}
}
+int looks_like_command_line_option(const char *str)
+{
+ return str && str[0] == '-';
+}
+
char *xdg_config_home(const char *filename)
{
const char *home, *config_home;