String getRepoCommand()

in src/main/java/com/googlesource/gerrit/plugins/download/command/BranchCommand.java [46:53]


  String getRepoCommand(String url, String id) {
    return "repo download -b change-"
        + id.replaceAll("/", "-")
        + " "
        + QuoteUtil.quote(url)
        + " "
        + id;
  }