aboutsummaryrefslogtreecommitdiff
path: root/git-repack-script
Commit message (Collapse)AuthorAge
* Mark git-relink-script and git-repack-script executableLinus Torvalds2005-07-08
| | | | | Sure, "install" will default to installing it executable anyway, but this is the right thing to do.
* Add "git-sh-setup-script" for common git shell script setupLinus Torvalds2005-07-08
| | | | | | | | | | 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.
* Make the name of a pack-file depend on the objects packed there-in.Linus Torvalds2005-07-03
| | | | | | | | | | This means that the .git/objects/pack directory is also rsync'able, since the filenames created there-in are either unique or refer to the same data. Otherwise you might not be able to pull from a directory that is partly packed without having to worry about missing objects due to pack-file name clashes.
* Add "git repack" command that does an incremental packLinus Torvalds2005-07-03