Tagged Questions
The unified-diff tag has no wiki summary.
3
votes
2answers
901 views
Can't apply unified diff patch on Solaris
For example, if I have two files:
file1:
This is file 1
and file2:
This is file 2
and create patch with the following command:
diff -u file1 file2 > files.patch
result is:
--- file1 ...
2
votes
2answers
215 views
How to print the comparison of two multiline strings in unified diff format?
Do you know any library that will help doing that?
I would write a function that prints the differences between two multiline strings in the unified diff format. Something like that:
def ...
1
vote
1answer
421 views
Why is GNU patch failing for this diff?
G'day,
Edit: Just thought I'd mention that this somewhat long question is now fixed thanks to Adam Goode's answer below if you're just skimming while passing through.
I've been given a patch to add ...
0
votes
3answers
94 views
Render Unified Diff with Python
I have a string which contains svn unified diff. My PyGTK app need to show this diff to user, and I want to render it like other diff tools do, or at least have it colorized.
Do you have something to ...