summaryrefslogtreecommitdiff
path: root/git-commit-script
AgeCommit message (Collapse)AuthorFilesLines
2005-08-13Add --signoff and --verify option to git commit.Libravatar Junio C Hamano1-4/+72
As brought up in the discussion which followed a patch to add a signed-off-by line with the --sign flag to format-patch from Johannes Schindelin, add --signoff to the git commit command. Also add --verify to make sure the lines you introduced are clean, which is more useful in commit but not very much in format-patch as it was originally implemented, because finding botches at format-patch time is too late. Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-08-09git-commit: log parameter updates.Libravatar Junio C Hamano1-22/+105
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 <file> : a file (use '-' to read from stdin). -C <commit> : message in existing commit. -c <commit> : 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 <junkio@cox.net>
2005-08-05[PATCH] git-commit-script fix for degenerated mergeLibravatar Johannes Schindelin1-2/+2
If merging results in an unchanged tree, git-commit-script should not complain that there's nothing to commit. Also, add "[--all]" to usage(). [jc: usually there is no reason to record an unchanging merge, but this code path is triggered only when there is a nontrivial merge that needed to be resolved by hand, and we should be able to record the fact that these two tree heads are dealt with as a regular two-parent commit in order to help later merges.] Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-07-22[PATCH] Audit rev-parse users.Libravatar Junio C Hamano1-1/+1
This patch changes rev-parse users that pass a single argument that is supposed to be a rev parameter to use "--verify". Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-07-19Add "git commit --all" since everybody seems to want it.Libravatar Linus Torvalds1-1/+5
This replaces git-diff-files --name-only | xargs git-update-cache git commit with a new "--all" argument to "git commit".
2005-07-08Add "git-sh-setup-script" for common git shell script setupLibravatar Linus Torvalds1-7/+3
It sets up the normal git environment variables and a few helper functions (currently just "die()"), and returns ok if it all looks like a git archive. So use it something like . git-sh-setup-script || die "Not a git archive" to make the rest of the git scripts more careful and readable.
2005-06-25[PATCH] git-commit-script: get commit message from an existing one.Libravatar Junio C Hamano1-8/+67
With -m flag specified, git-commit-script takes the commit message along with author information from an existing commit. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-20Let "git commit" take arguments for files to commit.Libravatar Linus Torvalds1-0/+1
It does a "git-update-cache" on the arguments, meaning that you can commit files without doing a separate "git-update-cache". This commit was done with git commit git-commit-script for example.
2005-06-19Make "git commit" clean up after itselfLibravatar Linus Torvalds1-5/+9
Noted by Jeff.
2005-06-14Make "git commit" handle initial commits tooLibravatar Linus Torvalds1-12/+31
No need to confuse ex-CVS users with a complex initial commit sequence.
2005-06-08Remove MERGE_HEAD after committing mergeLibravatar Linus Torvalds1-1/+2
2005-06-08Make "git commit" work correctly in the presense of a manual mergeLibravatar Linus Torvalds1-2/+13
This has gotten only very light testing, but something like this is clearly necessary and did the right thing for the one case I threw at it.
2005-06-01[PATCH] git: git-commit-script ignores $GIT_DIRLibravatar Alexey Guzeev1-1/+1
2005-05-30[PATCH] Buglets fix in the new two scriptsLibravatar Junio C Hamano1-3/+1
Should be obvious... - Use $VISUAL, $EDITOR, in this order if set, and fall back on vi. - Status R, C, D, N usually are followed by number, so adjust case arms to that pattern. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-30Add "commit" helper scriptLibravatar Linus Torvalds1-0/+15
This is meant to make raw git not hugely less usable than something like raw CVS. I want to make a 1.0 release of the plumbing, and the actual commit part was just too intimidating.