diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-03-08 21:29:56 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-03-08 21:29:56 -0800 |
commit | 175f5595511b047a320e5c6163c642ac1fc34681 (patch) | |
tree | f66169a0750929b474716969b2ba5b7a885a0ebc /quote.h | |
parent | Merge branch 'ml/submodule-add-existing' (diff) | |
parent | git-clean: add tests for relative path (diff) | |
download | tgif-175f5595511b047a320e5c6163c642ac1fc34681.tar.xz |
Merge branch 'dp/clean-fix'
* dp/clean-fix:
git-clean: add tests for relative path
git-clean: correct printing relative path
Make private quote_path() in wt-status.c available as quote_path_relative()
Revert part of d089eba (setup: sanitize absolute and funny paths in get_pathspec())
Revert part of 1abf095 (git-add: adjust to the get_pathspec() changes)
Revert part of 744dacd (builtin-mv: minimum fix to avoid losing files)
get_pathspec(): die when an out-of-tree path is given
Diffstat (limited to 'quote.h')
-rw-r--r-- | quote.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -47,6 +47,10 @@ extern void write_name_quoted(const char *name, FILE *, int terminator); extern void write_name_quotedpfx(const char *pfx, size_t pfxlen, const char *name, FILE *, int terminator); +/* quote path as relative to the given prefix */ +char *quote_path_relative(const char *in, int len, + struct strbuf *out, const char *prefix); + /* quoting as a string literal for other languages */ extern void perl_quote_print(FILE *stream, const char *src); extern void python_quote_print(FILE *stream, const char *src); |