6 git-runstatus - A helper for git-status and git-commit
11 'git-runstatus' [--color|--nocolor] [--amend] [--verbose] [--untracked]
16 Examines paths in the working tree that has changes unrecorded
17 to the index file, and changes between the index file and the
18 current HEAD commit. The former paths are what you _could_
19 commit by running 'git add' (or 'git rm' if you are deleting) before running 'git
20 commit', and the latter paths are what you _would_ commit by
23 If there is no path that is different between the index file and
24 the current HEAD commit, the command exits with non-zero status.
26 Note that this is _not_ the user level command you would want to
27 run from the command line. Use 'git-status' instead.
33 Show colored status, highlighting modified file names.
39 Show status based on HEAD^1, not HEAD, i.e. show what
40 'git-commit --amend' would do.
43 Show unified diff of all file changes.
46 Show files in untracked directories, too. Without this
47 option only its name and a trailing slash are displayed
48 for each untracked directory.
53 The output from this command is designed to be used as a commit
54 template comments, and all the output lines are prefixed with '#'.
59 Originally written by Linus Torvalds <torvalds@osdl.org> as part
60 of git-commit, and later rewritten in C by Jeff King.
64 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
68 Part of the gitlink:git[7] suite