aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-notes.txt
diff options
context:
space:
mode:
authorTeng Long <dyroneteng@gmail.com>2023-05-27 15:57:54 +0800
committerJunio C Hamano <gitster@pobox.com>2023-06-21 08:51:01 -0700
commit3d6a31646491bf4f8b1166d7182c6d92e2414cf8 (patch)
treed598bac5d01106579a6a71381e4a95d649af739c /Documentation/git-notes.txt
parentc4e2aa7d45fadf89f6c7d7cda109eccc735a65f8 (diff)
downloadgit-3d6a31646491bf4f8b1166d7182c6d92e2414cf8.tar.gz
notes: introduce "--no-separator" option
Sometimes, the user may want to add or append multiple notes without any separator to be added between them. Disscussion: https://public-inbox.org/git/3f86a553-246a-4626-b1bd-bacd8148318a@app.fastmail.com/ Signed-off-by: Teng Long <dyroneteng@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-notes.txt')
-rw-r--r--Documentation/git-notes.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/Documentation/git-notes.txt b/Documentation/git-notes.txt
index 5f3a9479a9..bc1bfa3791 100644
--- a/Documentation/git-notes.txt
+++ b/Documentation/git-notes.txt
@@ -9,9 +9,9 @@ SYNOPSIS
--------
[verse]
'git notes' [list [<object>]]
-'git notes' add [-f] [--allow-empty] [--separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [<object>]
+'git notes' add [-f] [--allow-empty] [--[no-]separator | --separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [<object>]
'git notes' copy [-f] ( --stdin | <from-object> [<to-object>] )
-'git notes' append [--allow-empty] [--separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [<object>]
+'git notes' append [--allow-empty] [--[no-]separator | --separator=<paragraph-break>] [--[no-]stripspace] [-F <file> | -m <msg> | (-c | -C) <object>] [<object>]
'git notes' edit [--allow-empty] [<object>] [--[no-]stripspace]
'git notes' show [<object>]
'git notes' merge [-v | -q] [-s <strategy> ] <notes-ref>
@@ -171,10 +171,11 @@ OPTIONS
Allow an empty note object to be stored. The default behavior is
to automatically remove empty notes.
---separator <paragraph-break>::
+--[no-]separator, --separator=<paragraph-break>::
Specify a string used as a custom inter-paragraph separator
- (a newline is added at the end as needed). Defaults to a
- blank line.
+ (a newline is added at the end as needed). If `--no-separator`, no
+ separators will be added between paragraphs. Defaults to a blank
+ line.
--[no-]stripspace::
Strip leading and trailing whitespace from the note message.