diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-29 23:51:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-29 23:51:26 -0700 |
commit | 3d109dd8ef012eac37702a2afa980b545ac08467 (patch) | |
tree | 34f28c520823af5b4982b6ad8ae271ae3d6e6952 /revision.h | |
parent | 01f9ffbd5d3f480c9a524780d86fa0d4134841af (diff) | |
parent | cc243c3cebd58d06bc4e064b08fa9c3fdd565250 (diff) | |
download | git-3d109dd8ef012eac37702a2afa980b545ac08467.tar.gz |
Merge branch 'jc/notes-batch-removal'
* jc/notes-batch-removal:
show: --ignore-missing
notes remove: --stdin reads from the standard input
notes remove: --ignore-missing
notes remove: allow removing more than one
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/revision.h b/revision.h index 5e1f5c7e8f..4499cebded 100644 --- a/revision.h +++ b/revision.h @@ -36,7 +36,8 @@ struct rev_info { const char *prefix; const char *def; struct pathspec prune_data; - unsigned int early_output; + unsigned int early_output:1, + ignore_missing:1; /* Traversal flags */ unsigned int dense:1, |