-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Junio C Hamano <junkio@cox.net>
- Loading branch information
Junio C Hamano
committed
Aug 10, 2005
1 parent
0c09129
commit 6203331
Showing
2 changed files
with
65 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
git-commit-script(1) | ||
==================== | ||
v0.99.4, Aug 2005 | ||
|
||
NAME | ||
---- | ||
git-commit-script - Record your changes | ||
|
||
SYNOPSIS | ||
-------- | ||
'git commit' [-a] [(-c | -C) <commit> | -F <file> | -m <msg>] <file>... | ||
|
||
DESCRIPTION | ||
----------- | ||
Updates the index file for given paths, or all modified files if | ||
'-a' is specified, and makes a commit object. The command | ||
VISUAL and EDITOR environment variables to edit the commit log | ||
message. | ||
|
||
OPTIONS | ||
------- | ||
-a:: | ||
Update all paths in the index file. | ||
|
||
-c or -C <commit>:: | ||
Take existing commit object, and reuse the log message | ||
and the authorship information (including the timestamp) | ||
when creating the commit. With '-C', the editor is not | ||
invoked; with '-c' the user can further edit the commit | ||
message. | ||
|
||
-F <file>:: | ||
Take the commit message from the given file. Use '-' to | ||
read the message from the standard input. | ||
|
||
-m <msg>:: | ||
Use the given <msg> as the commit message. | ||
|
||
<file>...:: | ||
Update specified paths in the index file. | ||
|
||
|
||
Author | ||
------ | ||
Written by Linus Torvalds <torvalds@osdl.org> | ||
|
||
GIT | ||
--- | ||
Part of the link:git.html[git] suite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters