コード例 #1
0
ファイル: server.py プロジェクト: longwosion/GitBundler
 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)
コード例 #2
0
ファイル: server.py プロジェクト: longwosion/GitBundler
 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)