]> git.cworth.org Git - notmuch/blob - doc/man1/notmuch-git.rst
CLI/git: add safety checks for checkout and commit
[notmuch] / doc / man1 / notmuch-git.rst
1 .. _notmuch-git(1):
2
3 ===========
4 notmuch-git
5 ===========
6
7 SYNOPSIS
8 ========
9
10 **notmuch** **git** [-h] [-N] [-C *repo*] [-p *prefix*] [-v] [-l *log level*] *subcommand*
11
12 **nmbug** [-h] [-C *repo*] [-p *prefix*] [-v] [-l *log level*] *subcommand*
13
14 DESCRIPTION
15 ===========
16
17 Manage notmuch tags with Git.
18
19 OPTIONS
20 -------
21
22 Supported options for `notmuch git` include
23
24 .. program:: notmuch-git
25
26 .. option::  -h, --help
27
28    show help message and exit
29
30 .. option:: -N, --nmbug
31
32    Set defaults for :option:`--tag-prefix` and :option:`--git-dir` suitable for the
33    :any:`notmuch` bug tracker
34
35 .. option:: -C <repo>, --git-dir <repo>
36
37    Operate on git repository *repo*. See :ref:`repo_location` for
38    defaults.
39
40 .. option:: -p <prefix>, --tag-prefix <prefix>
41
42    Operate only on tags with prefix *prefix*. See :ref:`prefix_val` for
43    defaults.
44
45 .. option::   -v, --version
46
47    show notmuch-git's version number and exit
48
49 .. option::   -l <level>, --log-level <level>
50
51    Log verbosity, one of: `critical`, `error`, `warning`, `info`,
52    `debug`. Defaults to `warning`.
53
54 SUBCOMMANDS
55 -----------
56
57 For help on a particular subcommand, run: 'notmuch-git ... <command> --help'.
58
59 .. program:: notmuch-git
60
61 .. option:: archive [tree-ish] [arg ...]
62
63 Dump a tar archive of a committed tag set using 'git archive'. See
64 :any:`format` for details of the archive contents.
65
66    .. describe:: tree-ish
67
68    The tree or commit to produce an archive for. Defaults to 'HEAD'.
69
70    .. describe:: arg
71
72    If present, any optional arguments are passed through to
73    :manpage:`git-archive(1)`. Arguments to `git-archive` are reordered
74    so that *tree-ish* comes last.
75
76 .. option:: checkout [-f|--force]
77
78 Update the notmuch database from Git.
79
80 This is mainly useful to discard your changes in notmuch relative
81 to Git.
82
83    .. describe:: [-f|--force]
84
85    Override checks that prevent modifying tags for large fractions of
86    messages in the database. See also :nmconfig:`git.safe_fraction`.
87
88 .. option:: clone <repository>
89
90 Create a local `notmuch git` repository from a remote source.
91
92 This wraps 'git clone', adding some options to avoid creating a
93 working tree while preserving remote-tracking branches and
94 upstreams.
95
96     .. describe:: repository
97
98     The (possibly remote) repository to clone from. See the URLS
99     section of :manpage:`git-clone(1)` for more information on
100     specifying repositories.
101
102 .. option:: commit [-f|--force] [message]
103
104 Commit prefix-matching tags from the notmuch database to Git.
105
106    .. describe:: message
107
108    Optional text for the commit message.
109
110    .. describe:: -f|--force
111
112    Override checks that prevent modifying tags for large fractions of
113    messages in the database. See also :nmconfig:`git.safe_fraction`.
114
115 .. option:: fetch [remote]
116
117 Fetch changes from the remote repository.
118
119     .. describe:: remote
120
121     Override the default configured in `branch.<name>.remote` to fetch
122     from a particular remote repository (e.g. `origin`).
123
124 .. option:: help
125
126 Show brief help for an `notmuch git` command.
127
128 .. option:: init
129
130 Create an empty `notmuch git` repository.
131
132 This wraps 'git init' with a few extra steps to support subsequent
133 status and commit commands.
134
135 .. option:: log [arg ...]
136
137 A wrapper for 'git log'.
138
139    .. describe:: arg
140
141    Additional arguments are passed through to 'git log'.
142
143 After running `notmuch git fetch`, you can inspect the changes with
144
145 ::
146
147    $ notmuch git log HEAD..@{upstream}
148
149 .. option:: merge [reference]
150
151 Merge changes from 'reference' into HEAD and load the result into notmuch.
152
153    .. describe:: reference
154
155    Reference, usually other branch heads, to merge into our
156    branch. Defaults to `@{upstream}`.
157
158 .. option:: pull [repository] [refspec ...]
159
160 Pull (merge) remote repository changes to notmuch.
161
162 **pull** is equivalent to **fetch** followed by **merge**.  We use the
163 Git-configured repository for your current branch
164 (`branch.<name>.repository`, likely `origin`, and `branch.<name>.merge`,
165 likely `master` or `main`).
166
167    .. describe:: repository
168
169    The "remote" repository that is the source of the pull. This parameter
170    can be either a URL (see the section GIT URLS in :manpage:`git-pull(1)`) or the
171    name of a remote (see the section REMOTES in :manpage:`git-pull(1)`).
172
173    .. describe:: refspec
174
175    Refspec (usually a branch name) to fetch and merge. See the
176    *refspec* entry in the OPTIONS section of :manpage:`git-pull(1`) for
177    other possibilities.
178
179 .. option:: push [repository] [refspec]
180
181 Push the local `notmuch git` Git state to a remote repository.
182
183     .. describe::  repository
184
185     The "remote" repository that is the destination of the push. This
186     parameter can be either a URL (see the section GIT URLS in
187     :manpage:`git-push(1)`) or the name of a remote (see the section
188     REMOTES in :manpage:`git-push(1)`).
189
190     .. describe:: refspec
191
192     Refspec (usually a branch name) to push. See the *refspec* entry in the OPTIONS section of
193     :manpage:`git-push(1)` for other possibilities.
194
195 .. option:: status
196
197 Show pending updates in notmuch or git repo.
198
199 Prints lines of the form
200
201 |  ng Message-Id tag
202
203 where n is a single character representing notmuch database status
204
205    .. describe:: A
206
207    Tag is present in notmuch database, but not committed to nmbug
208    (equivalently, tag has been deleted in nmbug repo, e.g. by a
209    pull, but not restored to notmuch database).
210
211    .. describe:: D
212
213    Tag is present in nmbug repo, but not restored to notmuch
214    database (equivalently, tag has been deleted in notmuch).
215
216    .. describe:: U
217
218    Message is unknown (missing from local notmuch database).
219
220 The second character *g* (if present) represents a difference between
221 local and upstream branches. Typically `notmuch git fetch` needs to be
222 run to update this.
223
224    .. describe:: a
225
226    Tag is present in upstream, but not in the local Git branch.
227
228    .. describe:: d
229
230    Tag is present in local Git branch, but not upstream.
231
232 .. _format:
233
234 REPOSITORY CONTENTS
235 ===================
236
237 The tags are stored in the git repo (and exported) as a set of empty
238 files. For a message with Message-Id *id*, for each tag *tag*, there
239 is an empty file with path
240
241        tags/ `encode` (*id*) / `encode` (*tag*)
242
243 The encoding preserves alphanumerics, and the characters `+-_@=.,:`.
244 All other octets are replaced with `%` followed by a two digit hex
245 number.
246
247 .. _repo_location:
248
249 REPOSITORY LOCATION
250 ===================
251
252 :any:`notmuch-git` uses the first of the following with a non-empty
253 value to locate the git repository.
254
255 - Option :option:`--git-dir`.
256
257 - Environment variable :envvar:`NOTMUCH_GIT_DIR`.
258
259 - Configuration item :nmconfig:`git.path`
260
261 - If invoked as `nmbug` or with the :option:`--nmbug` option,
262   :code:`$HOME/.nmbug`; otherwise
263   :code:`$XDG_DATA_HOME/notmuch/$NOTMUCH_PROFILE/git`.
264
265 .. _prefix_val:
266
267 PREFIX VALUE
268 ============
269
270 :any:`notmuch-git` uses the first of the following with a non-null
271 value to define the tag prefix.
272
273 - Option :option:`--tag-prefix`.
274
275 - Environment variable :envvar:`NOTMUCH_GIT_PREFIX`.
276
277 - Configuration item :nmconfig:`git.tag_prefix`.
278
279 - If invoked as `nmbug` or with the :option:`--nmbug` option,
280   :code:`notmuch::`, otherwise the empty string.
281
282 ENVIRONMENT
283 ===========
284
285 Variable :envvar:`NOTMUCH_PROFILE` influences :ref:`repo_location`.
286 If it is unset, 'default' is assumed.
287
288 .. envvar:: NOTMUCH_GIT_DIR
289
290    Default location of git repository. Overriden by :option:`--git-dir`.
291
292 .. envvar:: NOTMUCH_GIT_PREFIX
293
294    Default tag prefix (filter). Overriden by :option:`--tag-prefix`.
295
296 SEE ALSO
297 ========
298
299 :any:`notmuch(1)`,
300 :any:`notmuch-dump(1)`,
301 :any:`notmuch-restore(1)`,
302 :any:`notmuch-tag(1)`