# # patch "commands.cc" # from [842439051f78178fd5c775e2b02943ee1df8e7dc] # to [92b493a44352e5475fde789b5f0fca4fbcca2531] # # patch "cvs_sync.cc" # from [302af4c7695a3d2952f0f8e9e21d6228f859c14d] # to [9e2b53b56e10205e1c03878223cdca061ab3a345] # # patch "cvs_sync.hh" # from [d52b51edac779031c529340a22187a4ca4ab43a7] # to [270030573dca415187d07c19a88ca8ee74b7be99] # ======================================================================== --- commands.cc 842439051f78178fd5c775e2b02943ee1df8e7dc +++ commands.cc 92b493a44352e5475fde789b5f0fca4fbcca2531 @@ -3712,11 +3712,11 @@ cvs_sync::takeover(app, module); } -CMD(cvs_admin, "network", "COMMAND ARG", - "e.g. manifest REVISION", OPT_BRANCH_NAME) +CMD(cvs_debug, "network", "COMMAND ARG", + "e.g. manifest REVISION give you a list of cvs revisions per file", OPT_BRANCH_NAME) { if (args.size() != 2) throw usage(name); - cvs_sync::admin(idx(args, 0)(), idx(args, 1)(), app); + cvs_sync::debug(idx(args, 0)(), idx(args, 1)(), app); } ======================================================================== --- cvs_sync.cc 302af4c7695a3d2952f0f8e9e21d6228f859c14d +++ cvs_sync.cc 9e2b53b56e10205e1c03878223cdca061ab3a345 @@ -1644,7 +1644,7 @@ return e.xfiles; } -void cvs_sync::admin(const std::string &command, const std::string &arg, +void cvs_sync::debug(const std::string &command, const std::string &arg, app_state &app) { // we default to the first repository found (which might not be what you wanted) ======================================================================== --- cvs_sync.hh d52b51edac779031c529340a22187a4ca4ab43a7 +++ cvs_sync.hh 270030573dca415187d07c19a88ca8ee74b7be99 @@ -198,6 +198,6 @@ std::string const& branch, app_state &app); void push(const std::string &repository, const std::string &module, std::string const& branch, app_state &app); -void admin(const std::string &command, const std::string &arg, app_state &app); +void debug(const std::string &command, const std::string &arg, app_state &app); void takeover(app_state &app, const std::string &module); } // end namespace cvs_sync