summaryrefslogtreecommitdiff
path: root/git-sh-setup-script
AgeCommit message (Collapse)AuthorFilesLines
2005-07-08Add "git-push-script" to make a more regular interfaceLibravatar Linus Torvalds1-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.
2005-07-08Add "git-sh-setup-script" for common git shell script setupLibravatar Linus Torvalds1-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.