]> git.ipfire.org Git - thirdparty/git.git/commit - Makefile
git-status -v
authorJunio C Hamano <junkio@cox.net>
Fri, 10 Feb 2006 08:45:59 +0000 (00:45 -0800)
committerJunio C Hamano <junkio@cox.net>
Fri, 10 Feb 2006 08:54:49 +0000 (00:54 -0800)
commitcf7bb589af739563c90dc32b4901bea73aaaa9d0
treea563b00d8ca1acf56262ffa972d4b8155f1e5bfe
parent4dc870d90cf4cd30b30b59054603fbb09dca1f41
git-status -v

This revamps the git-status command to take the same set of
parameters as git commit.  It gives a preview of what is being
committed with that command.  With -v flag, it shows the diff
output between the HEAD commit and the index that would be
committed if these flags were given to git-commit command.

git-commit also acquires -v flag (it used to mean "verify" but
that is the default anyway and there is --no-verify to turn it
off, so not much is lost), which uses the updated git-status -v
to seed the commit log buffer.  This is handy for writing a log
message while reviewing the changes one last time.

Now, git-commit and git-status are internally share the same
implementation.

Unlike previous git-commit change, this uses a temporary index
to prepare the index file that would become the real index file
after a successful commit, and moves it to the real index file
once the commit is actually made.  This makes it safer than the
previous scheme, which stashed away the original index file and
restored it after an aborted commit.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile
git-commit.sh
git-status.sh [deleted file]