Re: [PATCH v4 07/10] fast-import: add support to delete refs
From: Eric Sunshine <hidden>
Date: 2016-06-15 22:59:06
On Sun, Oct 27, 2013 at 3:05 AM, Felipe Contreras [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Signed-off-by: Felipe Contreras <redacted> --- Documentation/git-fast-import.txt | 3 +++ fast-import.c | 13 ++++++++++--- t/t9300-fast-import.sh | 18 ++++++++++++++++++ 3 files changed, 31 insertions(+), 3 deletions(-)diff --git a/Documentation/git-fast-import.txt b/Documentation/git-fast-import.txt index 73f9806..c49ede4 100644 --- a/Documentation/git-fast-import.txt +++ b/Documentation/git-fast-import.txt@@ -483,6 +483,9 @@ Marks must be declared (via `mark`) before they can be used. * Any valid Git SHA-1 expression that resolves to a commit. See ``SPECIFYING REVISIONS'' in linkgit:gitrevisions[7] for details. +* The special null SHA-1 (40 zeros) specifices that the branch is to be
s/specifices/specifies/
+ removed. + The special case of restarting an incremental import from the current branch value should be written as: ----