2005-09-08 02:26:23 +02:00
|
|
|
git-status(1)
|
|
|
|
=============
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-status - Show the working tree status
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-08-08 07:41:32 +02:00
|
|
|
'git-status' <options>...
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
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_
|
2005-09-08 02:26:23 +02:00
|
|
|
commit by running 'git-update-index' before running 'git
|
2005-08-15 02:24:36 +02:00
|
|
|
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.
|
|
|
|
|
2006-08-08 07:41:32 +02:00
|
|
|
The command takes the same set of options as `git-commit`; it
|
|
|
|
shows what would be committed if the same options are given to
|
|
|
|
`git-commit`.
|
|
|
|
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
OUTPUT
|
|
|
|
------
|
|
|
|
The output from this command is designed to be used as a commit
|
|
|
|
template comments, and all the output lines are prefixed with '#'.
|
|
|
|
|
|
|
|
|
2007-01-17 10:11:01 +01:00
|
|
|
CONFIGURATION
|
|
|
|
-------------
|
|
|
|
|
|
|
|
The command honors `color.status` (or `status.color` -- they
|
|
|
|
mean the same thing and the latter is kept for backward
|
|
|
|
compatibility) and `color.status.<slot>` configuration variables
|
|
|
|
to colorize its output.
|
|
|
|
|
|
|
|
|
2005-08-15 02:24:36 +02:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org> and
|
|
|
|
Junio C Hamano <junkio@cox.net>.
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-08-15 02:24:36 +02:00
|
|
|
|