2015-03-23 19:36:10 +00:00
|
|
|
# NAME
|
|
|
|
|
|
|
|
git-annex status - show the working tree status
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
git annex status `[path ...]`
|
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
Similar to `git status --short`, this command displays the status of the files
|
2015-09-22 21:32:28 +00:00
|
|
|
in the working tree.
|
|
|
|
|
|
|
|
Show files that are not checked into git (?), deleted (D),
|
|
|
|
modified (M), added but not committed (A), and type changed/unlocked (T).
|
2015-03-23 19:36:10 +00:00
|
|
|
|
|
|
|
Particularly useful in direct mode.
|
|
|
|
|
|
|
|
# OPTIONS
|
|
|
|
|
2018-02-19 18:28:17 +00:00
|
|
|
* `--ignore-submodules=when`
|
|
|
|
|
|
|
|
This option is passed on to git status, see its man page for
|
|
|
|
details.
|
|
|
|
|
2015-03-23 19:36:10 +00:00
|
|
|
* `--json`
|
|
|
|
|
2015-03-25 16:09:49 +00:00
|
|
|
Enable JSON output. This is intended to be parsed by programs that use
|
|
|
|
git-annex. Each line of output is a JSON object.
|
2015-03-23 19:36:10 +00:00
|
|
|
|
2018-02-19 18:28:17 +00:00
|
|
|
* `--json-error-messages`
|
2017-02-20 20:37:04 +00:00
|
|
|
|
2018-02-19 19:33:59 +00:00
|
|
|
Messages that would normally be output to standard error are included in
|
|
|
|
the json instead.
|
2017-02-20 20:37:04 +00:00
|
|
|
|
2015-03-23 19:36:10 +00:00
|
|
|
# SEE ALSO
|
|
|
|
|
|
|
|
[[git-annex]](1)
|
|
|
|
|
2015-05-29 16:12:55 +00:00
|
|
|
git-status(1)
|
|
|
|
|
2015-03-23 19:36:10 +00:00
|
|
|
# AUTHOR
|
|
|
|
|
|
|
|
Joey Hess <id@joeyh.name>
|
|
|
|
|
|
|
|
Warning: Automatically converted into a man page by mdwn2man. Edit with care.
|