summaryrefslogtreecommitdiff
path: root/git-status-script
AgeCommit message (Collapse)AuthorFilesLines
2005-06-17Use "-M" instead of "-C" for "git diff" and "git status"Libravatar Linus Torvalds1-1/+1
The "C" in "-C" may stand for "Cool", but it's also pretty slow, since right now it leaves all unmodified files to be tested even if there are no new files at all. That just ends up being unacceptably slow for big projects, especially if it's not all in the cache.
2005-05-30[PATCH] Buglets fix in the new two scriptsLibravatar Junio C Hamano1-7/+7
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/+38
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.