Home | History | Annotate | Download | only in push-to-trunk

Lines Matching refs:SVN

357   def SVN(self, args="", prefix="", pipe=True, retry_on=None, cwd=None):
359 "svn", args, prefix, pipe, cwd=cwd or self.default_cwd)
496 svn/trunk"
523 self.Command("svn", "update", cwd=self._options.svn)
524 if self.Command("svn", "status", cwd=self._options.svn) != "":
525 self.Die("SVN checkout not clean.")
528 cwd=self._options.svn):
531 "svn",
534 cwd=self._options.svn)
641 parser.add_argument("--svn",
642 help=("Optional full svn checkout for the commit."
643 "The folder needs to be the svn root."))
644 parser.add_argument("--svn-config",
645 help=("Optional folder used as svn --config-dir."))
665 if options.svn and not options.svn_config:
666 print "Using pure svn for committing requires also --svn-config"