├── .gitattributes ├── .gitignore ├── .gitmodules ├── AUTHORS ├── COPYING ├── ChangeLog-2011 ├── Makefile.am ├── NEWS ├── README ├── README-alpha ├── README-hacking ├── README-prereq ├── bootstrap ├── bootstrap.conf ├── cfg.mk ├── configure.ac ├── m4 ├── setmode.m4 └── xattr.m4 ├── patch.man ├── pc ├── chdirsaf.c └── djgpp │ ├── README │ ├── config.sed │ ├── configure.bat │ └── configure.sed ├── src ├── Makefile.am ├── bestmatch.h ├── common.h ├── inp.c ├── inp.h ├── list.h ├── merge.c ├── patch.c ├── pch.c ├── pch.h ├── safe.c ├── safe.h ├── util.c ├── util.h ├── version.c └── version.h └── tests ├── Makefile.am ├── asymmetric-hunks ├── backup-prefix-suffix ├── bad-filenames ├── bad-usage ├── concat-git-diff ├── context-format ├── copy-rename ├── corrupt-patch ├── corrupt-reject-files ├── create-delete ├── create-directory ├── criss-cross ├── crlf-handling ├── dash-o-append ├── deep-directories ├── ed-style ├── empty-files ├── false-match ├── fifo ├── file-create-modes ├── file-modes ├── filename-choice ├── garbage ├── git-binary-diff ├── git-cleanup ├── global-reject-files ├── inname ├── line-numbers ├── mangled-numbers-abort ├── merge ├── mixed-patch-types ├── munged-context-format ├── need-filename ├── no-mode-change-git-diff ├── no-newline-triggers-assert ├── preserve-c-function-names ├── preserve-mode-and-timestamp ├── quoted-filenames ├── read-only-files ├── reject-format ├── remember-backup-files ├── remember-reject-files ├── remove-directories ├── symlinks ├── test-lib.sh ├── unmodified-files └── unusual-blanks /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog-2011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/ChangeLog-2011 -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/README -------------------------------------------------------------------------------- /README-alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/README-alpha -------------------------------------------------------------------------------- /README-hacking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/README-hacking -------------------------------------------------------------------------------- /README-prereq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/README-prereq -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/bootstrap -------------------------------------------------------------------------------- /bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/bootstrap.conf -------------------------------------------------------------------------------- /cfg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/cfg.mk -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/setmode.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/m4/setmode.m4 -------------------------------------------------------------------------------- /m4/xattr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/m4/xattr.m4 -------------------------------------------------------------------------------- /patch.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/patch.man -------------------------------------------------------------------------------- /pc/chdirsaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/pc/chdirsaf.c -------------------------------------------------------------------------------- /pc/djgpp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/pc/djgpp/README -------------------------------------------------------------------------------- /pc/djgpp/config.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/pc/djgpp/config.sed -------------------------------------------------------------------------------- /pc/djgpp/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/pc/djgpp/configure.bat -------------------------------------------------------------------------------- /pc/djgpp/configure.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/pc/djgpp/configure.sed -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/bestmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/bestmatch.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/common.h -------------------------------------------------------------------------------- /src/inp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/inp.c -------------------------------------------------------------------------------- /src/inp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/inp.h -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/list.h -------------------------------------------------------------------------------- /src/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/merge.c -------------------------------------------------------------------------------- /src/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/patch.c -------------------------------------------------------------------------------- /src/pch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/pch.c -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/pch.h -------------------------------------------------------------------------------- /src/safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/safe.c -------------------------------------------------------------------------------- /src/safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/safe.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/util.h -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/version.c -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/src/version.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/asymmetric-hunks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/asymmetric-hunks -------------------------------------------------------------------------------- /tests/backup-prefix-suffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/backup-prefix-suffix -------------------------------------------------------------------------------- /tests/bad-filenames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/bad-filenames -------------------------------------------------------------------------------- /tests/bad-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/bad-usage -------------------------------------------------------------------------------- /tests/concat-git-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/concat-git-diff -------------------------------------------------------------------------------- /tests/context-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/context-format -------------------------------------------------------------------------------- /tests/copy-rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/copy-rename -------------------------------------------------------------------------------- /tests/corrupt-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/corrupt-patch -------------------------------------------------------------------------------- /tests/corrupt-reject-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/corrupt-reject-files -------------------------------------------------------------------------------- /tests/create-delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/create-delete -------------------------------------------------------------------------------- /tests/create-directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/create-directory -------------------------------------------------------------------------------- /tests/criss-cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/criss-cross -------------------------------------------------------------------------------- /tests/crlf-handling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/crlf-handling -------------------------------------------------------------------------------- /tests/dash-o-append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/dash-o-append -------------------------------------------------------------------------------- /tests/deep-directories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/deep-directories -------------------------------------------------------------------------------- /tests/ed-style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/ed-style -------------------------------------------------------------------------------- /tests/empty-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/empty-files -------------------------------------------------------------------------------- /tests/false-match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/false-match -------------------------------------------------------------------------------- /tests/fifo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/fifo -------------------------------------------------------------------------------- /tests/file-create-modes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/file-create-modes -------------------------------------------------------------------------------- /tests/file-modes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/file-modes -------------------------------------------------------------------------------- /tests/filename-choice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/filename-choice -------------------------------------------------------------------------------- /tests/garbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/garbage -------------------------------------------------------------------------------- /tests/git-binary-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/git-binary-diff -------------------------------------------------------------------------------- /tests/git-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/git-cleanup -------------------------------------------------------------------------------- /tests/global-reject-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/global-reject-files -------------------------------------------------------------------------------- /tests/inname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/inname -------------------------------------------------------------------------------- /tests/line-numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/line-numbers -------------------------------------------------------------------------------- /tests/mangled-numbers-abort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/mangled-numbers-abort -------------------------------------------------------------------------------- /tests/merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/merge -------------------------------------------------------------------------------- /tests/mixed-patch-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/mixed-patch-types -------------------------------------------------------------------------------- /tests/munged-context-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/munged-context-format -------------------------------------------------------------------------------- /tests/need-filename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/need-filename -------------------------------------------------------------------------------- /tests/no-mode-change-git-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/no-mode-change-git-diff -------------------------------------------------------------------------------- /tests/no-newline-triggers-assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/no-newline-triggers-assert -------------------------------------------------------------------------------- /tests/preserve-c-function-names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/preserve-c-function-names -------------------------------------------------------------------------------- /tests/preserve-mode-and-timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/preserve-mode-and-timestamp -------------------------------------------------------------------------------- /tests/quoted-filenames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/quoted-filenames -------------------------------------------------------------------------------- /tests/read-only-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/read-only-files -------------------------------------------------------------------------------- /tests/reject-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/reject-format -------------------------------------------------------------------------------- /tests/remember-backup-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/remember-backup-files -------------------------------------------------------------------------------- /tests/remember-reject-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/remember-reject-files -------------------------------------------------------------------------------- /tests/remove-directories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/remove-directories -------------------------------------------------------------------------------- /tests/symlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/symlinks -------------------------------------------------------------------------------- /tests/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/test-lib.sh -------------------------------------------------------------------------------- /tests/unmodified-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/unmodified-files -------------------------------------------------------------------------------- /tests/unusual-blanks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/patch/HEAD/tests/unusual-blanks --------------------------------------------------------------------------------