summaryrefslogtreecommitdiff
path: root/apply.c
AgeCommit message (Collapse)Author
2005-06-05diff 'rename' format change.Linus Torvalds
Clearly even Junio felt git "rename" header lines should say "from/to" instead of "old/new", since he wrote the documentation that way. This way it also matches "copy". git-apply will accept both versions, at least for a while.
2005-06-05git-apply: consider it an error to apply no changesLinus Torvalds
A "--stat" or a "--check" will just be quiet, but if you try to apply something with no changes, that's an error.
2005-06-05git-apply: fix rename header parsingLinus Torvalds
It's not "rename from" and "rename to", it's "rename old" and "rename new". Which is illogical and doesn't match the "copy from/to" case, but that's life. Maybe Junio will fix it up one of these days.
2005-06-05git-apply: actually apply patches and update the indexLinus Torvalds
We update the index only if the "--index" flag is given, so you can actually use this as a strange kind of "patch" program even for non-git usage. Not that you'd likely want to, but it comes in handy for testing. This _should_ more or less get everythign right, but as usual I leave the testing to the usrs..
2005-06-05git-apply: fix apply of a new fileLinus Torvalds
(And fix name handling for when we have an implied create or delete event from a traditional diff).
2005-06-05git-apply: find offset fragments, and really apply themLinus Torvalds
This applies the fragments in memory, but doesn't actually write the results out to the files yet. But we now do all the difficult parts, the rest is just basically writing the results out and updating the index.
2005-06-05git-apply: first cut at actually checking fragment dataLinus Torvalds
Right now it requires that the fragment offsets be exact, and it doesn't actually apply the fragment yet, but it does find where it goes and verify the data. Next step: actually applying the fragment changes.
2005-06-01git-apply --stat: limit lines to 79 charactersLinus Torvalds
It had already tried to do that, but with the independent rounding of the number of '+' and '-' characters, it would sometimes do 80-char lines after all.
2005-05-31git-apply: don't try to be clever about filenames and the indexLinus Torvalds
It just causes things like "git-apply --stat" to parse traditional patch headers differently depending on what your index is, which is nasty.
2005-05-31[PATCH] Show dissimilarity index for D and N case.Junio C Hamano
The way broken deletes and creates are shown in the -p (diff-patch) output format has become consistent with how rename/copy edits are shown. They will show "dissimilarity index" value, immediately following the "deleted file mode" and "new file mode" lines. The git-apply is taught to grok such an extended header. Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-05-26git-apply: add "--check" option to check that the diff makes senseLinus Torvalds
It currently only verifies the index against the working directory, it doesn't actually verify the diff fragments themselves yet.
2005-05-26git-apply: when validating default names, check the final EOLN tooLinus Torvalds
This means that filenames are totally unambiguous even if they have spaces or tabs in them.
2005-05-26git-apply: pick up default filenames from "diff --git" header lineLinus Torvalds
Pure mode changes, and deletes or creates of empty files won't have this information anywhere else.
2005-05-26git-apply: make the diffstat output happen for "--stat" only.Linus Torvalds
Slowly this is takign the form of a program that we'd actually use. Now "git-apply --stat" basically ends up being a perfectly useful diffstat.
2005-05-26git-apply: implement "diffstat" outputLinus Torvalds
Hey, it's almost free by now, and it's a good way to see that we parse the patches correctly.
2005-05-26git-apply: parse the whole list of patches into memory firstLinus Torvalds
Make it a clear two-phase thing: first a read-only parse of the patch itself (which is independent of any current index information), and then the second phase actually uses the patch. The second phase might not be a real apply, it could be just a diffstat, for example. Which is trivial to do once the patch is parsed.
2005-05-25[PATCH] Squelch compiler warningJunio C Hamano
Not important but I am a bit annoyed by gcc complaining about the control falling out of the function without returning value. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-24git-apply: more consistency checks on gitdiff filenamesLinus Torvalds
There's some duplication of filenames when doing filename operations (creates, deletes, renames and copies), and this makes us verify that the pathnames match when they should.
2005-05-24git-apply: start using the index file information.Linus Torvalds
Right now we only use it to figure out what the filename might be when that is ambiguous, but we'll get there..
2005-05-23git-apply: if no input files specified, apply stdinLinus Torvalds
This makes it act more like a traditional UNIX thing (eg "cat").
2005-05-23git-apply: unknown modes are zero, not -1Linus Torvalds
2005-05-23git-apply: parse the diff headers (both traditional and new)Linus Torvalds
.. and print out the information. This sets up all the pathname information, and whether it's a new file, deleted file, rename, copy or whatever. It's slowly getting to the point where it all comes together, and we can actually apply all the information that we've gathered.
2005-05-23git-apply: improve error detection and messagesLinus Torvalds
In particular, give line numbers when detecting corrupt patches. This makes the tool a lot more friendly (indeed, much more so than regular "patch", I think).
2005-05-23git-apply: bad patch fragments are fatalLinus Torvalds
Don't just stop at them and look for the next header. Die, die, die!
2005-05-23Start implementing "git-apply"Linus Torvalds
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.