Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

applypatch(1p) [debian man page]

APPLYPATCH(1p)						User Contributed Perl Documentation					    APPLYPATCH(1p)

NAME
applypatch - apply 'makepatch' generated script to update a source tree SYNOPSIS
applypatch [ options ] patch-kit DESCRIPTION
Applypatch applies a patch kit as generated by the makepatch program. It performs the following actions: o First, it will extensively verify that the patch kit is complete and did not get corrupted during transfer. o Then it will apply some heuristics to verify that the directory in which the patch will be applied does indeed contain the expected sources. If a corruption or verification error is detected, applypatch exits without making changes. o If the kit is okay, and the directory seems to be the right one: it creates new files and directories as necessary. o Then it runs the patch program to apply the patch to the source files. o Upon completion, obsolete files, directories and .orig files are removed, file modes of new files are set, and the timestamps of all patched files are adjusted. Applypatch arguments Applypatch takes one argument, the name of the patch kit as generated by makepatch. If no name is specified, the patch kit is read from standard input. Applypatch options Options are matched case insensitive, and may be abbreviated to uniqueness. -directory dir The name of the source directory to be patched. -check Perform the checks on the patch kit and patch directory, but do not make any changes. -force Force continuation of the patch process even when corruption or verification errors are detected. This is very dangerous! -retain Do not remove patch backup files (with extension ".orig") upon completion. -patch cmd The patch command to be used. Default is ""patch -p0 -N"". Additionally, a ""-s"" will be added unless option -verbose was specified. -verbose This option will cause applypatch and the patch program to emit verbose progress information. -quiet This option will cause applypatch and the patch program to emit no progress information, only error messages. Environment variables SIMPLE_BACKUP_SUFFIX The suffix used by (some versions of?) patch to back up the originals of patched files. Upon completion, these files are removed by applypatch unless the option -retain was specified. Default value if "".orig"". SEE ALSO
makepatch(1), diff(1), patch(1), perl(1), rm(1). AUTHOR AND CREDITS
This program is written by Johan Vromans <jvromans@squirrel.nl>. See section AUTHOR AND CREDITS of the makepatch program for an extensive list of people that helped one way or another in the makepatch / applypatch project. COPYRIGHT AND DISCLAIMER
This program is Copyright 1992,1999,2006 by Squirrel Consultancy. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of either: a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" which comes with Perl. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the Artistic License for more details. perl v5.10.0 2006-10-08 APPLYPATCH(1p)

Check Out this Related Man Page

GIT-PATCH-ID(1)                                                     Git Manual                                                     GIT-PATCH-ID(1)

NAME
git-patch-id - Compute unique ID for a patch SYNOPSIS
git patch-id [--stable | --unstable] DESCRIPTION
Read a patch from the standard input and compute the patch ID for it. A "patch ID" is nothing but a sum of SHA-1 of the file diffs associated with a patch, with whitespace and line numbers ignored. As such, it's "reasonably stable", but at the same time also reasonably unique, i.e., two patches that have the same "patch ID" are almost guaranteed to be the same thing. IOW, you can use this thing to look for likely duplicate commits. When dealing with git diff-tree output, it takes advantage of the fact that the patch is prefixed with the object name of the commit, and outputs two 40-byte hexadecimal strings. The first string is the patch ID, and the second string is the commit ID. This can be used to make a mapping from patch ID to commit ID. OPTIONS
--stable Use a "stable" sum of hashes as the patch ID. With this option: o Reordering file diffs that make up a patch does not affect the ID. In particular, two patches produced by comparing the same two trees with two different settings for "-O<orderfile>" result in the same patch ID signature, thereby allowing the computed result to be used as a key to index some meta-information about the change between the two trees; o Result is different from the value produced by git 1.9 and older or produced when an "unstable" hash (see --unstable below) is configured - even when used on a diff output taken without any use of "-O<orderfile>", thereby making existing databases storing such "unstable" or historical patch-ids unusable. This is the default if patchid.stable is set to true. --unstable Use an "unstable" hash as the patch ID. With this option, the result produced is compatible with the patch-id value produced by git 1.9 and older. Users with pre-existing databases storing patch-ids produced by git 1.9 and older (who do not deal with reordered patches) may want to use this option. This is the default. GIT
Part of the git(1) suite Git 2.17.1 10/05/2018 GIT-PATCH-ID(1)
Man Page