summaryrefslogtreecommitdiffstats
path: root/trailer.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-01-14 17:57:55 +0100
committerJunio C Hamano <gitster@pobox.com>2016-01-14 12:22:17 -0800
commite1f898639e906158fec26bdf3111d6f623288fa1 (patch)
tree39d2eea730efc4fcf6473f19e09e05b500b15a7d /trailer.h
parentd0d2344ad84cde7fddedc1e141296607af673454 (diff)
downloadgit-e1f898639e906158fec26bdf3111d6f623288fa1.tar.gz
git-e1f898639e906158fec26bdf3111d6f623288fa1.tar.xz
interpret-trailers: add option for in-place editing
Add a command line option --in-place to support in-place editing akin to sed -i. This allows to write commands like the following: git interpret-trailers --trailer "X: Y" a.txt > b.txt && mv b.txt a.txt in a more concise way: git interpret-trailers --trailer "X: Y" --in-place a.txt Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'trailer.h')
-rw-r--r--trailer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/trailer.h b/trailer.h
index 8eb25d565..36b40b817 100644
--- a/trailer.h
+++ b/trailer.h
@@ -1,6 +1,7 @@
#ifndef TRAILER_H
#define TRAILER_H
-void process_trailers(const char *file, int trim_empty, struct string_list *trailers);
+void process_trailers(const char *file, int in_place, int trim_empty,
+ struct string_list *trailers);
#endif /* TRAILER_H */