| | @@ -132,11 +132,12 @@ |
| 132 | 132 | ** Pull changes from a remote repository into the local repository. |
| 133 | 133 | ** Use the "-R REPO" or "--repository REPO" command-line options |
| 134 | 134 | ** to specify an alternative repository file. |
| 135 | 135 | ** |
| 136 | 136 | ** If the URL is not specified, then the URL from the most recent |
| 137 | | -** <a>clone</a>, <a>push</a>, pull, <a>remote-url</a>, or <a>sync</a> command is used. |
| 137 | +** <a>clone</a>, <a>push</a>, pull, <a>remote-url</a>, or <a>sync</a> command |
| 138 | +** is used. |
| 138 | 139 | ** |
| 139 | 140 | ** The URL specified normally becomes the new "remote-url" used for |
| 140 | 141 | ** subsequent push, pull, and sync operations. However, the "--once" |
| 141 | 142 | ** command-line option makes the URL a one-time-use URL that is not |
| 142 | 143 | ** saved. |
| | @@ -156,16 +157,17 @@ |
| 156 | 157 | ** Push changes in the local repository over into a remote repository. |
| 157 | 158 | ** Use the "-R REPO" or "--repository REPO" command-line options |
| 158 | 159 | ** to specify an alternative repository file. |
| 159 | 160 | ** |
| 160 | 161 | ** If the URL is not specified, then the URL from the most recent |
| 161 | | -** <a>clone</a>, push, <a>pull</a>, <a>remote-url</a>, or <a>sync</a> command is used. |
| 162 | +** <a>clone</a>, push, <a>pull</a>, <a>remote-url</a>, or <a>sync</a> command |
| 163 | +** is used. |
| 162 | 164 | ** |
| 163 | 165 | ** The URL specified normally becomes the new "remote-url" used for |
| 164 | | -** subsequent <a>push</a>, <a>pull</a>, and <a>sync</a> operations. However, the "--once" |
| 165 | | -** command-line option makes the URL a one-time-use URL that is not |
| 166 | | -** saved. |
| 166 | +** subsequent <a>push</a>, <a>pull</a>, and <a>sync</a> operations. However, |
| 167 | +** the "--once" command-line option makes the URL a one-time-use URL that is |
| 168 | +** not saved. |
| 167 | 169 | ** |
| 168 | 170 | ** See also: <a>clone</a>, <a>pull</a>, <a>sync</a>, <a>remote-url</a> |
| 169 | 171 | */ |
| 170 | 172 | void push_cmd(void){ |
| 171 | 173 | process_sync_args(); |
| | @@ -177,25 +179,26 @@ |
| 177 | 179 | ** COMMAND: sync |
| 178 | 180 | ** |
| 179 | 181 | ** Usage: %fossil sync ?URL? ?options? |
| 180 | 182 | ** |
| 181 | 183 | ** Synchronize the local repository with a remote repository. This is |
| 182 | | -** the equivalent of running both "<a>push</a>" and "<a>pull</a>" at the same time. |
| 183 | | -** Use the "-R REPO" or "--repository REPO" command-line options |
| 184 | +** the equivalent of running both "<a>push</a>" and "<a>pull</a>" at the same |
| 185 | +** time. Use the "-R REPO" or "--repository REPO" command-line options |
| 184 | 186 | ** to specify an alternative repository file. |
| 185 | 187 | ** |
| 186 | 188 | ** If a user-id and password are required, specify them as follows: |
| 187 | 189 | ** |
| 188 | 190 | ** http://userid:[email protected]:1234/path |
| 189 | 191 | ** |
| 190 | 192 | ** If the URL is not specified, then the URL from the most recent successful |
| 191 | | -** <a>clone</a>, <a>push</a>, <a>pull</a>, <a>remote-url</a>, or sync command is used. |
| 193 | +** <a>clone</a>, <a>push</a>, <a>pull</a>, <a>remote-url</a>, or sync command |
| 194 | +** is used. |
| 192 | 195 | ** |
| 193 | 196 | ** The URL specified normally becomes the new "remote-url" used for |
| 194 | | -** subsequent <a>push</a>, <a>pull</a>, and <a>sync</a> operations. However, the "--once" |
| 195 | | -** command-line option makes the URL a one-time-use URL that is not |
| 196 | | -** saved. |
| 197 | +** subsequent <a>push</a>, <a>pull</a>, and <a>sync</a> operations. However, |
| 198 | +** the "--once" command-line option makes the URL a one-time-use URL that is |
| 199 | +** not saved. |
| 197 | 200 | ** |
| 198 | 201 | ** See also: <a>clone</a>, <a>push</a>, <a>pull</a>, <a>remote-url</a> |
| 199 | 202 | */ |
| 200 | 203 | void sync_cmd(void){ |
| 201 | 204 | int syncFlags = process_sync_args(); |
| | @@ -205,17 +208,17 @@ |
| 205 | 208 | /* |
| 206 | 209 | ** COMMAND: remote-url |
| 207 | 210 | ** |
| 208 | 211 | ** Usage: %fossil remote-url ?URL|off? |
| 209 | 212 | ** |
| 210 | | -** Query and/or change the default server URL used by the "<a>pull</a>", "<a>push</a>", |
| 211 | | -** and "<a>sync</a>" commands. |
| 213 | +** Query and/or change the default server URL used by the "<a>pull</a>", |
| 214 | +** "<a>push</a>", and "<a>sync</a>" commands. |
| 212 | 215 | ** |
| 213 | 216 | ** The remote-url is set automatically by a "<a>clone</a>" command or by any |
| 214 | | -** "<a>sync</a>", "<a>push</a>", or "<a>pull</a>" command that specifies an explicit URL. |
| 215 | | -** The default remote-url is used by auto-syncing and by "<a>sync</a>", "<a>push</a>", |
| 216 | | -** "<a>pull</a>" that omit the server URL. |
| 217 | +** "<a>sync</a>", "<a>push</a>", or "<a>pull</a>" command that specifies an |
| 218 | +** explicit URL. The default remote-url is used by auto-syncing and by |
| 219 | +** "<a>sync</a>", "<a>push</a>", "<a>pull</a>" that omit the server URL. |
| 217 | 220 | ** |
| 218 | 221 | ** See also: <a>clone</a>, <a>push</a>, <a>pull</a>, <a>sync</a> |
| 219 | 222 | */ |
| 220 | 223 | void remote_url_cmd(void){ |
| 221 | 224 | char *zUrl; |
| 222 | 225 | |