aboutsummaryrefslogtreecommitdiff
path: root/git-status-script
Commit message (Collapse)AuthorAge
* Show which branch you are on in git-status output.Junio C Hamano2005-08-15
| | | | | | | When not on the "master" branch, show which branch we are working on in the git-status message. Signed-off-by: Junio C Hamano <junkio@cox.net>
* [PATCH] git-status-script was missed during the conversion from N -> ARyan Anderson2005-07-27
| | | | | | | | git-status-script was missed during the conversion from "N" to "A" as the new-file marker flag. Signed-off-by: Ryan Anderson <ryan@michonline.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
* Use "-M" instead of "-C" for "git diff" and "git status"Linus Torvalds2005-06-17
| | | | | | | 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.
* [PATCH] Buglets fix in the new two scriptsJunio C Hamano2005-05-30
| | | | | | | | | | | | | 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>
* Add "commit" helper scriptLinus Torvalds2005-05-30
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.