patchutils icon indicating copy to clipboard operation
patchutils copied to clipboard

Manipulate patch files

Results 25 patchutils issues
Sort by recently updated
recently updated
newest added

According to `man interdiff`: > To reverse a patch, use /dev/null for diff2. (that is, `interdiff file.patch /dev/null` is supposed to reverse the patch in `file.patch`) That's bullshit. The output...

```bash git diff v3.3..HEAD | filterdiff -p 1 -x README.vin ... diff --git a/README.vin b/README.vin index d7a1ea2..7c298d7 100644 diff --git a/autogen.sh b/autogen.sh ... ``` Leaving those two lines in confuses...

Hi, when combining two patches where the first one creates a new file ```diff --- /dev/null +++ b/txt @@ -0,0 +1,3 @@ +a +b +c ``` and the second one...

http://cyberelk.net/tim/patchutils/ was last updated in 2004 and it says: > Anonymous CVS is available at sources.redhat.com: > > cvs -d:pserver:[email protected]:/cvs/patchutils co patchutils Unsurprisingly, these instructions no longer work. Could you...

It would be great to have some bash command-line completions for the various utilities.

enhancement

I have looked at a few source files for your current software. I have noticed that some checks for return codes are missing. Would you like to add more error...

enhancement

I discovered that if the package is compiled with `--with-pcre2` (which is the default behaviour if libpcre2 is found on the system), then the following invocation does not return anything...