Win32: fix detection of empty directories in is_dir_empty
[git/dscho.git] / Documentation / git-quiltimport.txt
blob7f112f3dcd87490dcf50fc74e45cace5736c599f
1 git-quiltimport(1)
2 ================
4 NAME
5 ----
6 git-quiltimport - Applies a quilt patchset onto the current branch
9 SYNOPSIS
10 --------
11 [verse]
12 'git quiltimport' [--dry-run | -n] [--author <author>] [--patches <dir>]
15 DESCRIPTION
16 -----------
17 Applies a quilt patchset onto the current git branch, preserving
18 the patch boundaries, patch order, and patch descriptions present
19 in the quilt patchset.
21 For each patch the code attempts to extract the author from the
22 patch description.  If that fails it falls back to the author
23 specified with --author.  If the --author flag was not given
24 the patch description is displayed and the user is asked to
25 interactively enter the author of the patch.
27 If a subject is not found in the patch description the patch name is
28 preserved as the 1 line subject in the git description.
30 OPTIONS
31 -------
33 -n::
34 --dry-run::
35         Walk through the patches in the series and warn
36         if we cannot find all of the necessary information to commit
37         a patch.  At the time of this writing only missing author
38         information is warned about.
40 --author Author Name <Author Email>::
41         The author name and email address to use when no author
42         information can be found in the patch description.
44 --patches <dir>::
45         The directory to find the quilt patches and the
46         quilt series file.
48 The default for the patch directory is patches
49 or the value of the $QUILT_PATCHES environment
50 variable.
52 GIT
53 ---
54 Part of the linkgit:git[1] suite