def archive_bundle(self, bundlename, commit, output): config = GitBundlerConfig() repo, filename = config.get_clientbundle(bundlename) if repo and filename: self.archive(repo, filename, commit, output)
def pullbundle(self, bundlename, force_branch=None): config = GitBundlerConfig() repo, filename = config.get_clientbundle(bundlename) if repo and filename: self.pull(repo, filename, force_branch)