From 0c091296c001836e408b8c98de1548d6c7ada67d Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 8 Aug 2005 17:03:14 -0700 Subject: git-commit: log parameter updates. While moving '-m' to make room for CVS compatible "here is the log message", enhance source of log parameters. -m 'message': a command line parameter. -F : a file (use '-' to read from stdin). -C : message in existing commit. -c : message in existing commit (allows further editing). Longer option names for these options are also available. While we are at it, get rid of shell array bashism. Signed-off-by: Junio C Hamano --- git-rebase-script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-rebase-script') diff --git a/git-rebase-script b/git-rebase-script index 5b791c6bd..83289845a 100755 --- a/git-rebase-script +++ b/git-rebase-script @@ -37,7 +37,7 @@ do esac S=`cat "$GIT_DIR/HEAD"` && GIT_EXTERNAL_DIFF=git-apply-patch-script git-diff-tree -p $commit && - git-commit-script -m "$commit" || { + git-commit-script -C "$commit" || { echo $commit >>$fail git-read-tree --reset -u $S } -- cgit v1.2.1