summaryrefslogtreecommitdiff
path: root/git-sh-setup-script
Commit message (Collapse)AuthorAgeFilesLines
* Add "git-push-script" to make a more regular interfaceLinus Torvalds2005-07-081-0/+0
| | | | | | It only does local and ssh pushes, because it's really just a wrapper for git-send-pack. We might make it do an rsync mirror or something, of course.
* Add "git-sh-setup-script" for common git shell script setupLinus Torvalds2005-07-081-0/+17
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.