# # patch "ChangeLog" # from [4cba7d28463e719bd4539506b9c74dda5b3fa4dd] # to [a01e5a27c14503a703039fce13688187ca6a5962] # # patch "commands.cc" # from [63e8fe8b10f79c4800d9ff1a0b298d486a99f75b] # to [2fcb423053b7dfe19cb23d9386e0454b3e57fec9] # --- ChangeLog +++ ChangeLog @@ -1,5 +1,9 @@ 2005-07-06 Nathaniel Smith + * commands.cc (push, pull, sync): Fix --help description. + +2005-07-06 Nathaniel Smith + * options.hh (OPT_SET_DEFAULT): * app_state.{hh,cc} (app_state::set_default): * monotone.cc (coptions, cpp_main): New option. --- commands.cc +++ commands.cc @@ -2037,7 +2037,7 @@ } CMD(push, "network", "[ADDRESS[:PORTNUMBER] [PATTERN]]", - "push branches matching REGEX to netsync server at ADDRESS", OPT_SET_DEFAULT) + "push branches matching PATTERN to netsync server at ADDRESS", OPT_SET_DEFAULT) { utf8 addr, include_pattern, exclude_pattern; process_netsync_args(name, args, addr, include_pattern, exclude_pattern, true, app); @@ -2051,7 +2051,7 @@ } CMD(pull, "network", "[ADDRESS[:PORTNUMBER] [PATTERN]]", - "pull branches matching REGEX from netsync server at ADDRESS", OPT_SET_DEFAULT) + "pull branches matching PATTERN from netsync server at ADDRESS", OPT_SET_DEFAULT) { utf8 addr, include_pattern, exclude_pattern; process_netsync_args(name, args, addr, include_pattern, exclude_pattern, true, app); @@ -2064,7 +2064,7 @@ } CMD(sync, "network", "[ADDRESS[:PORTNUMBER] [PATTERN]]", - "sync branches matching REGEX with netsync server at ADDRESS", OPT_SET_DEFAULT) + "sync branches matching PATTERN with netsync server at ADDRESS", OPT_SET_DEFAULT) { utf8 addr, include_pattern, exclude_pattern; process_netsync_args(name, args, addr, include_pattern, exclude_pattern, true, app);