From: Junio C Hamano Date: Mon, 26 Jun 2006 21:05:13 +0000 (-0700) Subject: Merge branch 'ew/rebase' X-Git-Tag: v1.4.1-rc2~22 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/57be46fd213b448f66b1470187109e7d6ad6f475?hp=d5e673b60be2eb99153276366b6b5ff3277805df Merge branch 'ew/rebase' * ew/rebase: rebase: allow --skip to work with --merge rebase: cleanup rebasing with --merge rebase: allow --merge option to handle patches merged upstream --- diff --git a/Documentation/git-grep.txt b/Documentation/git-grep.txt index 7b810dfda7..62a8e7f222 100644 --- a/Documentation/git-grep.txt +++ b/Documentation/git-grep.txt @@ -16,7 +16,7 @@ SYNOPSIS [-n] [-l | --files-with-matches] [-L | --files-without-match] [-c | --count] [-A ] [-B ] [-C ] - [-f ] [-e ] + [-f ] [-e] [...] [--] [...] @@ -71,6 +71,11 @@ OPTIONS -f :: Read patterns from , one per line. +-e:: + The next parameter is the pattern. This option has to be + used for patterns starting with - and should be used in + scripts passing user input to grep. + `...`:: Search blobs in the trees for specified patterns. diff --git a/connect.c b/connect.c index db7342e4d2..66e78a2905 100644 --- a/connect.c +++ b/connect.c @@ -8,6 +8,7 @@ #include #include #include +#include static char *server_capabilities = NULL; diff --git a/merge-index.c b/merge-index.c index 190e12fb7c..0498a6f45e 100644 --- a/merge-index.c +++ b/merge-index.c @@ -1,5 +1,6 @@ #include #include +#include #include "cache.h" diff --git a/pkt-line.h b/pkt-line.h index 9abef24de3..9df653f6f5 100644 --- a/pkt-line.h +++ b/pkt-line.h @@ -1,6 +1,8 @@ #ifndef PKTLINE_H #define PKTLINE_H +#include "git-compat-util.h" + /* * Silly packetized line writing interface */