-
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 sp/reflog
* master: (90 commits) fetch.c: remove an unused variable and dead code. Clean up sha1 file writing Builtin git-cat-file builtin format-patch: squelch content-type for 7-bit ASCII CMIT_FMT_EMAIL: Q-encode Subject: and display-name part of From: fields. add more informative error messages to git-mktag remove the artificial restriction tagsize < 8kb git-rebase: use canonical A..B syntax to format-patch git-format-patch: now built-in. fmt-patch: Support --attach fmt-patch: understand old <his> notation Teach fmt-patch about --keep-subject Teach fmt-patch about --numbered fmt-patch: implement -o <dir> fmt-patch: output file names to stdout Teach fmt-patch to write individual files. built-in tar-tree and remote tar-tree Builtin git-diff-files, git-diff-index, git-diff-stages, and git-diff-tree. Builtin git-show-branch. Builtin git-apply. ...
- Loading branch information
Showing
76 changed files
with
3,457 additions
and
1,583 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
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
Oops, something went wrong.