-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into js/fmt-patch
* master: (119 commits) diff family: add --check option Document that "git add" only adds non-ignored files. Add a conversion tool to migrate remote information into the config fetch, pull: ask config for remote information Fix build procedure for builtin-init-db read-tree -m -u: do not overwrite or remove untracked working tree files. apply --cached: do not check newly added file in the working tree Implement a --dry-run option to git-quiltimport Implement git-quiltimport Revert "builtin-grep: workaround for non GNU grep." builtin-grep: workaround for non GNU grep. builtin-grep: workaround for non GNU grep. git-am: use apply --cached apply --cached: apply a patch without using working tree. apply --numstat: show new name, not old name. Documentation/Makefile: create tarballs for the man pages and html files Allow pickaxe and diff-filter options to be used by git log. Libify the index refresh logic Builtin git-init-db Remove unnecessary local in get_ref_sha1. ...
- Loading branch information
Showing
93 changed files
with
3,881 additions
and
1,004 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
git-quiltimport(1) | ||
================ | ||
|
||
NAME | ||
---- | ||
git-quiltimport - Applies a quilt patchset onto the current branch | ||
|
||
|
||
SYNOPSIS | ||
-------- | ||
[verse] | ||
'git-quiltimport' [--dry-run] [--author <author>] [--patches <dir>] | ||
|
||
|
||
DESCRIPTION | ||
----------- | ||
Applies a quilt patchset onto the current git branch, preserving | ||
the patch boundaries, patch order, and patch descriptions present | ||
in the quilt patchset. | ||
|
||
For each patch the code attempts to extract the author from the | ||
patch description. If that fails it falls back to the author | ||
specified with --author. If the --author flag was not given | ||
the patch description is displayed and the user is asked to | ||
interactively enter the author of the patch. | ||
|
||
If a subject is not found in the patch description the patch name is | ||
preserved as the 1 line subject in the git description. | ||
|
||
OPTIONS | ||
------- | ||
--dry-run:: | ||
Walk through the patches in the series and warn | ||
if we cannot find all of the necessary information to commit | ||
a patch. At the time of this writing only missing author | ||
information is warned about. | ||
|
||
--author Author Name <Author Email>:: | ||
The author name and email address to use when no author | ||
information can be found in the patch description. | ||
|
||
--patches <dir>:: | ||
The directory to find the quilt patches and the | ||
quilt series file. | ||
|
||
The default for the patch directory is patches | ||
or the value of the $QUILT_PATCHES environment | ||
variable. | ||
|
||
Author | ||
------ | ||
Written by Eric Biederman <ebiederm@lnxi.com> | ||
|
||
Documentation | ||
-------------- | ||
Documentation by Eric Biederman <ebiederm@lnxi.com> | ||
|
||
GIT | ||
--- | ||
Part of the gitlink:git[7] suite | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.