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
|
|
|
|
--------
|
2008-06-30 08:09:04 +02:00
|
|
|
'git status' <options>...
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2007-12-08 10:00:31 +01:00
|
|
|
Displays paths that have differences between the index file and the
|
|
|
|
current HEAD commit, paths that have differences between the working
|
|
|
|
tree and the index file, and paths in the working tree that are not
|
2007-12-29 07:20:38 +01:00
|
|
|
tracked by git (and are not ignored by linkgit:gitignore[5]). The first
|
2007-12-08 10:00:31 +01:00
|
|
|
are what you _would_ commit by running `git commit`; the second and
|
2008-07-03 07:41:41 +02:00
|
|
|
third are what you _could_ commit by running 'git-add' before running
|
2007-12-08 10:00:31 +01:00
|
|
|
`git commit`.
|
2005-08-15 02:24:36 +02:00
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
The command takes the same set of options as 'git-commit'; it
|
2006-08-08 07:41:32 +02:00
|
|
|
shows what would be committed if the same options are given to
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-commit'.
|
2006-08-08 07:41:32 +02:00
|
|
|
|
2007-12-08 10:00:31 +01:00
|
|
|
If there is no path that is different between the index file and
|
|
|
|
the current HEAD commit (i.e., there is nothing to commit by running
|
2008-06-30 08:09:04 +02:00
|
|
|
`git commit`), the command exits with non-zero status.
|
2007-12-08 10:00:31 +01:00
|
|
|
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
OUTPUT
|
|
|
|
------
|
|
|
|
The output from this command is designed to be used as a commit
|
2007-12-08 10:00:31 +01:00
|
|
|
template comment, and all the output lines are prefixed with '#'.
|
2005-08-15 02:24:36 +02:00
|
|
|
|
2007-12-06 18:15:39 +01:00
|
|
|
The paths mentioned in the output, unlike many other git commands, are
|
2007-12-08 10:00:31 +01:00
|
|
|
made relative to the current directory if you are working in a
|
2007-12-07 22:26:07 +01:00
|
|
|
subdirectory (this is on purpose, to help cutting and pasting). See
|
|
|
|
the status.relativePaths config option below.
|
2007-12-06 18:15:39 +01:00
|
|
|
|
2005-08-15 02:24:36 +02:00
|
|
|
|
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.
|
|
|
|
|
2007-12-07 22:26:07 +01:00
|
|
|
If the config variable `status.relativePaths` is set to false, then all
|
|
|
|
paths shown are relative to the repository root, not to the current
|
|
|
|
directory.
|
|
|
|
|
2008-04-12 17:05:32 +02:00
|
|
|
If `status.submodulesummary` is set to a non zero number or true (identical
|
|
|
|
to -1 or an unlimited number), the submodule summary will be enabled and a
|
|
|
|
summary of commits for modified submodules will be shown (see --summary-limit
|
|
|
|
option of linkgit:git-submodule[1]).
|
|
|
|
|
2008-05-29 01:55:27 +02:00
|
|
|
SEE ALSO
|
2007-06-02 19:08:54 +02:00
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:gitignore[5]
|
2007-01-17 10:11:01 +01:00
|
|
|
|
2005-08-15 02:24:36 +02:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org> and
|
2008-07-21 21:14:42 +02:00
|
|
|
Junio C Hamano <gitster@pobox.com>.
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|