{{ message }}
Patch application#2280
Closed
ethomson wants to merge 2 commits into
Closed
Conversation
Member
Author
Member
Author
|
And also a big thanks to @arrbee for making |
Member
|
/cc @brianmario - I think we were just talking about stuff related to this |
added 2 commits
April 21, 2014 15:28
The beginnings of patch application from an existing (diff-created) git_patch object: applies the hunks of a git_patch to a buffer.
Merged
Member
|
What's the status of this? |
Member
Author
|
Totally stalled and not something that I'm going to have time to attack in the near future. |
Member
|
Can I take on this PR and try and hack on it? |
9a2e14d to
a3839dd
Compare
Member
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

This PR is attempting to take an initial bite out of patch application, a la
git-apply. My goal is to parse a git-style patch file created with libgit2 or git.git into agit_patchand be able to apply agit_patchto a buffer. This does not yet open up any public API for application, just internal methods; I was hoping to get some eyeballs on this and perhaps even merge it before I did something like applying patches into the working directory.Things left todo: