We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given file.txt:
file.txt
a b c
And this patch (my.diff):
my.diff
--- file.txt +++ file.txt @@ -1,3 +1,4 @@ a b +b1 d
Which is applied using:
import patch p = patch.fromfile("my.diff") p.apply(".")
file.txt now looks like this:
a b b1 d
The patch only adds b1 but the following context was also put into the file. After applying the patch file.txt should not contain d but end with c.
b1
d
c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given
file.txt
:And this patch (
my.diff
):Which is applied using:
file.txt
now looks like this:The patch only adds
b1
but the following context was also put into the file. After applying the patchfile.txt
should not containd
but end withc
.The text was updated successfully, but these errors were encountered: