From 8c4c1d48f00e69f2eb40995fd2e8f8f78f7cbcd1 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Tue, 17 Sep 2013 14:47:21 +0300 Subject: [PATCH] GitRepository.archive: add 'paths' option Signed-off-by: Markus Lehtonen --- gbp/git/repository.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gbp/git/repository.py b/gbp/git/repository.py index 5d66222..6b21c25 100644 --- a/gbp/git/repository.py +++ b/gbp/git/repository.py @@ -1834,7 +1834,7 @@ class GitRepository(object): return result #} - def archive(self, format, prefix, output, treeish): + def archive(self, format, prefix, output, treeish, paths=None): """ Create an archive from a treeish @@ -1847,6 +1847,8 @@ class GitRepository(object): @type output: C{str} or C{None} @param treeish: the treeish to create the archive from @type treeish: C{str} + @param paths: List of paths to include in the archive + @type paths: C{list} of C{str} @return: archive data as a generator object @rtype: C{None} or C{generator} of C{str} -- 2.7.4