diff options
author | Paolo Bonzini <paolo.bonzini@lu.unisi.ch> | 2007-03-05 08:57:53 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-09 00:05:23 -0800 |
commit | 6cbf07efc5702351897dee4742525c9b9f7828ac (patch) | |
tree | 4ed450733ea20be3cdeb98922bf589db65b950de /Documentation/git-commit.txt | |
parent | bd1fc628b8d456bdaea3e10d435cf1e98bc5d8a8 (diff) | |
download | git-6cbf07efc5702351897dee4742525c9b9f7828ac.tar.gz git-6cbf07efc5702351897dee4742525c9b9f7828ac.tar.xz |
git-commit: add a --interactive option
The --interactive option behaves like "git commit", except that
"git add --interactive" is executed before committing. It is
incompatible with -a and -i.
Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-commit.txt')
-rw-r--r-- | Documentation/git-commit.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Documentation/git-commit.txt b/Documentation/git-commit.txt index 2187eee41..53a7bb089 100644 --- a/Documentation/git-commit.txt +++ b/Documentation/git-commit.txt @@ -8,8 +8,9 @@ git-commit - Record changes to the repository SYNOPSIS -------- [verse] -'git-commit' [-a] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg> | - --amend] [--no-verify] [-e] [--author <author>] +'git-commit' [-a | --interactive] [-s] [-v] + [(-c | -C) <commit> | -F <file> | -m <msg> | --amend] + [--no-verify] [-e] [--author <author>] [--] [[-i | -o ]<file>...] DESCRIPTION @@ -35,6 +36,10 @@ methods: before, and to automatically "rm" files that have been removed from the working tree, and perform the actual commit. +5. by using the --interactive switch with the 'commit' command to decide one + by one which files should be part of the commit, before finalizing the + operation. Currently, this is done by invoking `git-add --interactive`. + The gitlink:git-status[1] command can be used to obtain a summary of what is included by any of the above for the next commit by giving the same set of parameters you would give to |