]> git.cworth.org Git - notmuch/blob - doc/man1/notmuch-git.rst
CL/git: add format version 1
[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. These empty files are contained within a directory named after
239 the message-id.
240
241 In what follows `encode()` represents a POSIX filesystem safe
242 encoding. The encoding preserves alphanumerics, and the characters
243 `+-_@=.,:`.  All other octets are replaced with `%` followed by a two
244 digit hex number.
245
246 Currently :any:`notmuch-git` can read any format version, but can only
247 create (via :any:`init`) :ref:`version 1 <format_version_1>` repositories.
248
249 .. _format_version_0:
250
251 Version 0
252 ---------
253
254 This is the legacy format created by the `nmbug` tool prior to release
255 0.37.  For a message with Message-Id *id*, for each tag *tag*, there
256 is an empty file with path
257
258        tags/ `encode` (*id*) / `encode` (*tag*)
259
260 .. _format_version_1:
261
262 Version 1
263 ---------
264
265 In format version 1 and later, the format version is contained in a
266 top level file called FORMAT.
267
268 For a message with Message-Id *id*, for each tag *tag*, there
269 is an empty file with path
270
271        tags/ `hash1` (*id*) / `hash2` (*id*) `encode` (*id*) / `encode` (*tag*)
272
273 The hash functions each represent one byte of the `blake2b` hex
274 digest.
275
276 Compared to :ref:`version 0 <format_version_0>`, this reduces the
277 number of subdirectories within each directory.
278
279 .. _repo_location:
280
281 REPOSITORY LOCATION
282 ===================
283
284 :any:`notmuch-git` uses the first of the following with a non-empty
285 value to locate the git repository.
286
287 - Option :option:`--git-dir`.
288
289 - Environment variable :envvar:`NOTMUCH_GIT_DIR`.
290
291 - Configuration item :nmconfig:`git.path`
292
293 - If invoked as `nmbug` or with the :option:`--nmbug` option,
294   :code:`$HOME/.nmbug`; otherwise
295   :code:`$XDG_DATA_HOME/notmuch/$NOTMUCH_PROFILE/git`.
296
297 .. _prefix_val:
298
299 PREFIX VALUE
300 ============
301
302 :any:`notmuch-git` uses the first of the following with a non-null
303 value to define the tag prefix.
304
305 - Option :option:`--tag-prefix`.
306
307 - Environment variable :envvar:`NOTMUCH_GIT_PREFIX`.
308
309 - Configuration item :nmconfig:`git.tag_prefix`.
310
311 - If invoked as `nmbug` or with the :option:`--nmbug` option,
312   :code:`notmuch::`, otherwise the empty string.
313
314 ENVIRONMENT
315 ===========
316
317 Variable :envvar:`NOTMUCH_PROFILE` influences :ref:`repo_location`.
318 If it is unset, 'default' is assumed.
319
320 .. envvar:: NOTMUCH_GIT_DIR
321
322    Default location of git repository. Overriden by :option:`--git-dir`.
323
324 .. envvar:: NOTMUCH_GIT_PREFIX
325
326    Default tag prefix (filter). Overriden by :option:`--tag-prefix`.
327
328 SEE ALSO
329 ========
330
331 :any:`notmuch(1)`,
332 :any:`notmuch-dump(1)`,
333 :any:`notmuch-restore(1)`,
334 :any:`notmuch-tag(1)`