mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
e1f898639e
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>
7 lines
170 B
C
7 lines
170 B
C
#ifndef TRAILER_H
|
|
#define TRAILER_H
|
|
|
|
void process_trailers(const char *file, int in_place, int trim_empty,
|
|
struct string_list *trailers);
|
|
|
|
#endif /* TRAILER_H */
|