diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-05-17 12:44:40 -0600 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-18 22:55:57 -0700 |
commit | d3d8f361a8c6beb5647e0d963a1460a505324494 (patch) | |
tree | 918d3f53e99e71db5f426a139f6a61170a446d8e /Makefile | |
parent | ff62b7f37899de2faa88cbb5be1f3bcfa246012c (diff) | |
download | git-d3d8f361a8c6beb5647e0d963a1460a505324494.tar.gz git-d3d8f361a8c6beb5647e0d963a1460a505324494.tar.xz |
Implement git-quiltimport
Importing a quilt patch series into git is not very difficult
but parsing the patch descriptions and all of the other
minutia take a bit of effort to get right, so this automates it.
Since git and quilt complement each other it makes sense
to make it easy to go back and forth between the two.
If a patch is encountered that it cannot derive the author
from the user is asked.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ SCRIPT_SH = \ git-applymbox.sh git-applypatch.sh git-am.sh \ git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \ git-merge-resolve.sh git-merge-ours.sh \ - git-lost-found.sh + git-lost-found.sh git-quiltimport.sh SCRIPT_PERL = \ git-archimport.perl git-cvsimport.perl git-relink.perl \ |