diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-23 10:52:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-23 10:52:17 -0700 |
commit | c1bb93502012b710ec5a31dff62d4aca7bf51adc (patch) | |
tree | a66dedcdcfe71cec93fa662ff908b1ac4358b404 /Makefile | |
parent | 2cb45e95438c113871fbbea5b4f629f9463034e7 (diff) | |
download | git-c1bb93502012b710ec5a31dff62d4aca7bf51adc.tar.gz |
Start implementing "git-apply"
This applies git patches (and old-style unified diffs)
in the index, rather than doing it in the working directory.
That allows for a lot more flexibility, and means that if a
patch fails, we aren't going to mess up the working directory.
NOTE! This is just the first cut at it, and right now it only
parses the incoming patch, it doesn't actually apply it yet.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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-get-tar-commit-id git-mkdelta git-apply all: $(PROG) |