summaryrefslogtreecommitdiff
path: root/git-reset-script
AgeCommit message (Collapse)Author
2005-07-08Add "git-sh-setup-script" for common git shell script setupLinus Torvalds
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-21Remove MERGE_HEAD in "git checkout/reset"Linus Torvalds
Both of these scripts will end up resetting the index to some specific head, and any unresolved merge will be forgotten.
2005-06-15Trivial git script fixupsLinus Torvalds
Fix permissions, and add trivial "reset" and "add" scripts. The "reset" script just resets the index back to head, while the "add" script is just a crutch for people used to do "cvs add".