From 3a97102af4a6f91d1bbedf8e7b75d34633822ffa Mon Sep 17 00:00:00 2001
From: Junio C Hamano
@@ -582,7 +582,7 @@ apply.whitespace
git-runstatus - + A helper for git-status and git-commit +
+git-runstatus [--color|--nocolor] [--amend] [--verbose] [--untracked]
+Examines paths in the working tree that has changes unrecorded +to the index file, and changes between the index file and the +current HEAD commit. The former paths are what you _could_ +commit by running git-update-index before running git +commit, and the latter paths are what you _would_ commit by +running git commit.
+If there is no path that is different between the index file and +the current HEAD commit, the command exits with non-zero status.
+Note that this is _not_ the user level command you would want to +run from the command line. Use git-status instead.
++ Show colored status, highlighting modified file names. +
++ Turn off coloring. +
++ Show status based on HEAD^1, not HEAD, i.e. show what + git-commit --amend would do. +
++ Show unified diff of all file changes. +
++ Show files in untracked directories, too. Without this + option only its name and a trailing slash are displayed + for each untracked directory. +
+The output from this command is designed to be used as a commit +template comments, and all the output lines are prefixed with #.
+Originally written by Linus Torvalds <torvalds@osdl.org> as part +of git-commit, and later rewritten in C by Jeff King.
+Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
+Part of the git(7) suite
+diff --git a/git-apply.txt b/git-apply.txt index d9137c748..2cc32d1c5 100644 --- a/git-apply.txt +++ b/git-apply.txt @@ -150,7 +150,7 @@ discouraged. * `strip` outputs warnings for a few such errors, strips out the trailing whitespaces and applies the patch. ---inacurate-eof:: +--inaccurate-eof:: Under certain circumstances, some versions of diff do not correctly detect a missing new-line at the end of the file. As a result, patches created by such diff programs do not record incomplete lines diff --git a/git-runstatus.html b/git-runstatus.html new file mode 100644 index 000000000..ccbb05dc7 --- /dev/null +++ b/git-runstatus.html @@ -0,0 +1,362 @@ + + +
+ + + +
+ +
+