1git-runstatus(1)
2================
34
NAME
5----
6git-runstatus - A helper for git-status and git-commit
78
9
SYNOPSIS
10--------
11'git-runstatus' [--color|--nocolor] [--amend] [--verbose] [--untracked]
1213
14
DESCRIPTION
15-----------
16Examines paths in the working tree that has changes unrecorded
17to the index file, and changes between the index file and the
18current HEAD commit. The former paths are what you _could_
19commit by running 'git add' (or 'git rm' if you are deleting) before running 'git
20commit', and the latter paths are what you _would_ commit by
21running 'git commit'.
2223
If there is no path that is different between the index file and
24the current HEAD commit, the command exits with non-zero status.
2526
Note that this is _not_ the user level command you would want to
27run from the command line. Use 'git-status' instead.
2829
30
OPTIONS
31-------
32--color::
33Show colored status, highlighting modified file names.
3435
--nocolor::
36Turn off coloring.
3738
--amend::
39Show status based on HEAD^1, not HEAD, i.e. show what
40'git-commit --amend' would do.
4142
--verbose::
43Show unified diff of all file changes.
4445
--untracked::
46Show files in untracked directories, too. Without this
47option only its name and a trailing slash are displayed
48for each untracked directory.
4950
51
OUTPUT
52------
53The output from this command is designed to be used as a commit
54template comments, and all the output lines are prefixed with '#'.
5556
57
Author
58------
59Originally written by Linus Torvalds <torvalds@osdl.org> as part
60of git-commit, and later rewritten in C by Jeff King.
6162
Documentation
63--------------
64Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
6566
GIT
67---
68Part of the gitlink:git[7] suite