1GIT-RUNSTATUS(1) Git Manual GIT-RUNSTATUS(1)
2
3
4
6 git-runstatus - A helper for git-status and git-commit
7
9 git-runstatus [--color|--nocolor] [--amend] [--verbose] [--untracked]
10
12 Examines paths in the working tree that has changes unrecorded to the
13 index file, and changes between the index file and the current HEAD
14 commit. The former paths are what you could commit by running git add
15 (or git rm if you are deleting) before running git commit, and the
16 latter paths are what you would commit by running git commit.
17
18 If there is no path that is different between the index file and the
19 current HEAD commit, the command exits with non-zero status.
20
21 Note that this is not the user level command you would want to run from
22 the command line. Use git-status instead.
23
25 --color
26 Show colored status, highlighting modified file names.
27
28 --nocolor
29 Turn off coloring.
30
31 --amend
32 Show status based on HEAD^1, not HEAD, i.e. show what git-commit
33 --amend would do.
34
35 --verbose
36 Show unified diff of all file changes.
37
38 --untracked
39 Show files in untracked directories, too. Without this option only
40 its name and a trailing slash are displayed for each untracked
41 directory.
42
44 The output from this command is designed to be used as a commit
45 template comments, and all the output lines are prefixed with #.
46
48 Originally written by Linus Torvalds <torvalds@osdl.org> as part of
49 git-commit, and later rewritten in C by Jeff King.
50
52 Documentation by David Greaves, Junio C Hamano and the git-list
53 <git@vger.kernel.org>.
54
56 Part of the git(7) suite
57
58
59
60
61Git 1.5.3.3 10/09/2007 GIT-RUNSTATUS(1)