diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-30 12:51:00 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-30 12:51:00 -0700 |
commit | a3e870f2e2bcacc80d5b81d7b77c15a7928a9082 (patch) | |
tree | 58f726b5db2132fe3c76e92253c3504dd80272e1 /Makefile | |
parent | f345b0a066572206aac4a4f9a57d746e213b6bff (diff) | |
download | git-a3e870f2e2bcacc80d5b81d7b77c15a7928a9082.tar.gz |
Add "commit" helper script
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -22,7 +22,7 @@ INSTALL=install SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \ git-pull-script git-tag-script git-resolve-script git-whatchanged \ - git-deltafy-script git-fetch-script + git-deltafy-script git-fetch-script git-status-script git-commit-script PROG= git-update-cache git-diff-files git-init-db git-write-tree \ git-read-tree git-commit-tree git-cat-file git-fsck-cache \ @@ -31,7 +31,7 @@ PROG= git-update-cache git-diff-files git-init-db git-write-tree \ git-unpack-file git-export git-diff-cache git-convert-cache \ git-http-pull git-rpush git-rpull git-rev-list git-mktag \ git-diff-helper git-tar-tree git-local-pull git-write-blob \ - git-get-tar-commit-id git-mkdelta git-apply + git-get-tar-commit-id git-mkdelta git-apply git-stripspace all: $(PROG) @@ -112,6 +112,7 @@ git-diff-helper: diff-helper.c git-tar-tree: tar-tree.c git-write-blob: write-blob.c git-mkdelta: mkdelta.c +git-stripspace: stripspace.c git-http-pull: LIBS += -lcurl |