コード例 #1
0
ファイル: pull.py プロジェクト: agernler/git-cvs
    def run(self):
        conduit = Conduit()
        conduit.pull(limit=self.options.limit,
                     quiet=self.options.quiet,
                     verbose=self.options.verbose,
                     authors=self.options.authors,
                     stop_on_unknown_author=\
                         self.options.stop_on_unknown_author)

        # Optionally verify the new HEAD revision and work tree
        # against a fresh CVS checkout.
        if self.options.verify:
            Verify().eval()