git quiltimport
(note that you don't need the dash, and this is true for all git-foo
commands) seems to apply a series of patches stored in a specific format (a quilt patchset, see below).
I would expect it to behave similarly to several git am
which applies one or several patches from e-mails stored in the maildir format (or from a single e-mail file).
The rest of this answer is copied from What is a quilt patchset? .
Quilt is a patch managing tool. The idea is that it makes it easier for you to maintain multiple, discrete sets of changes in a single source client, even if they touch the same files.
The official site is sparse on details, but worth if you are thinking of using it.
If you didn't use quilt, you would probably just have to create another client to maintain the separate change sets, but you would have to patch back and forth changes that would benefit both client source trees.