Fossil SCM
rename import to addremove
Commit
7e65c703c0b0d9d22adf92a60181114addde4814
Parent
b37d5f256e207b9…
2 files changed
+2
-2
+3
-3
+2
-2
| --- src/add.c | ||
| +++ src/add.c | ||
| @@ -273,13 +273,13 @@ | ||
| 273 | 273 | db_multi_exec("DELETE FROM vfile WHERE deleted AND rid=0"); |
| 274 | 274 | db_end_transaction(0); |
| 275 | 275 | } |
| 276 | 276 | |
| 277 | 277 | /* |
| 278 | -** COMMAND: import ?--dotfiles? ?--ignore GLOBPATTERN? | |
| 278 | +** COMMAND: addremove ?--dotfiles? ?--ignore GLOBPATTERN? | |
| 279 | 279 | ** |
| 280 | -** Usage: %fossil import | |
| 280 | +** Usage: %fossil addremove | |
| 281 | 281 | ** |
| 282 | 282 | ** If used in a checkout, the current checkout file tree is synchronized |
| 283 | 283 | ** with the repository: |
| 284 | 284 | ** * all files, existing in the file tree but not in the repository |
| 285 | 285 | ** (files displayed using the <a>extra</a> command) |
| 286 | 286 |
| --- src/add.c | |
| +++ src/add.c | |
| @@ -273,13 +273,13 @@ | |
| 273 | db_multi_exec("DELETE FROM vfile WHERE deleted AND rid=0"); |
| 274 | db_end_transaction(0); |
| 275 | } |
| 276 | |
| 277 | /* |
| 278 | ** COMMAND: import ?--dotfiles? ?--ignore GLOBPATTERN? |
| 279 | ** |
| 280 | ** Usage: %fossil import |
| 281 | ** |
| 282 | ** If used in a checkout, the current checkout file tree is synchronized |
| 283 | ** with the repository: |
| 284 | ** * all files, existing in the file tree but not in the repository |
| 285 | ** (files displayed using the <a>extra</a> command) |
| 286 |
| --- src/add.c | |
| +++ src/add.c | |
| @@ -273,13 +273,13 @@ | |
| 273 | db_multi_exec("DELETE FROM vfile WHERE deleted AND rid=0"); |
| 274 | db_end_transaction(0); |
| 275 | } |
| 276 | |
| 277 | /* |
| 278 | ** COMMAND: addremove ?--dotfiles? ?--ignore GLOBPATTERN? |
| 279 | ** |
| 280 | ** Usage: %fossil addremove |
| 281 | ** |
| 282 | ** If used in a checkout, the current checkout file tree is synchronized |
| 283 | ** with the repository: |
| 284 | ** * all files, existing in the file tree but not in the repository |
| 285 | ** (files displayed using the <a>extra</a> command) |
| 286 |
+3
-3
| --- src/checkin.c | ||
| +++ src/checkin.c | ||
| @@ -102,11 +102,11 @@ | ||
| 102 | 102 | ** |
| 103 | 103 | ** Usage: %fossil changes |
| 104 | 104 | ** |
| 105 | 105 | ** Report on the edit status of all files in the current checkout. |
| 106 | 106 | ** |
| 107 | -** See also the <a>status</a>, <a>extra</a> and <a>import</a> commands. | |
| 107 | +** See also the <a>status</a>, <a>extra</a> and <a>addremove</a> commands. | |
| 108 | 108 | */ |
| 109 | 109 | void changes_cmd(void){ |
| 110 | 110 | Blob report; |
| 111 | 111 | int vid; |
| 112 | 112 | db_must_be_within_tree(); |
| @@ -122,11 +122,11 @@ | ||
| 122 | 122 | ** |
| 123 | 123 | ** Usage: %fossil status |
| 124 | 124 | ** |
| 125 | 125 | ** Report on the status of the current checkout. |
| 126 | 126 | ** |
| 127 | -** See also <a>import</a> | |
| 127 | +** See also <a>addremove</a> | |
| 128 | 128 | */ |
| 129 | 129 | void status_cmd(void){ |
| 130 | 130 | int vid; |
| 131 | 131 | db_must_be_within_tree(); |
| 132 | 132 | /* 012345678901234 */ |
| @@ -255,11 +255,11 @@ | ||
| 255 | 255 | ** the current checkout. See also the <a>clean</a> command. |
| 256 | 256 | ** |
| 257 | 257 | ** Files and subdirectories whose names begin with "." are normally |
| 258 | 258 | ** ignored but can be included by adding the --dotfiles option. |
| 259 | 259 | ** |
| 260 | -** See also <a>import</a> | |
| 260 | +** See also <a>addremove</a> | |
| 261 | 261 | */ |
| 262 | 262 | void extra_cmd(void){ |
| 263 | 263 | Blob path; |
| 264 | 264 | Blob repo; |
| 265 | 265 | Stmt q; |
| 266 | 266 |
| --- src/checkin.c | |
| +++ src/checkin.c | |
| @@ -102,11 +102,11 @@ | |
| 102 | ** |
| 103 | ** Usage: %fossil changes |
| 104 | ** |
| 105 | ** Report on the edit status of all files in the current checkout. |
| 106 | ** |
| 107 | ** See also the <a>status</a>, <a>extra</a> and <a>import</a> commands. |
| 108 | */ |
| 109 | void changes_cmd(void){ |
| 110 | Blob report; |
| 111 | int vid; |
| 112 | db_must_be_within_tree(); |
| @@ -122,11 +122,11 @@ | |
| 122 | ** |
| 123 | ** Usage: %fossil status |
| 124 | ** |
| 125 | ** Report on the status of the current checkout. |
| 126 | ** |
| 127 | ** See also <a>import</a> |
| 128 | */ |
| 129 | void status_cmd(void){ |
| 130 | int vid; |
| 131 | db_must_be_within_tree(); |
| 132 | /* 012345678901234 */ |
| @@ -255,11 +255,11 @@ | |
| 255 | ** the current checkout. See also the <a>clean</a> command. |
| 256 | ** |
| 257 | ** Files and subdirectories whose names begin with "." are normally |
| 258 | ** ignored but can be included by adding the --dotfiles option. |
| 259 | ** |
| 260 | ** See also <a>import</a> |
| 261 | */ |
| 262 | void extra_cmd(void){ |
| 263 | Blob path; |
| 264 | Blob repo; |
| 265 | Stmt q; |
| 266 |
| --- src/checkin.c | |
| +++ src/checkin.c | |
| @@ -102,11 +102,11 @@ | |
| 102 | ** |
| 103 | ** Usage: %fossil changes |
| 104 | ** |
| 105 | ** Report on the edit status of all files in the current checkout. |
| 106 | ** |
| 107 | ** See also the <a>status</a>, <a>extra</a> and <a>addremove</a> commands. |
| 108 | */ |
| 109 | void changes_cmd(void){ |
| 110 | Blob report; |
| 111 | int vid; |
| 112 | db_must_be_within_tree(); |
| @@ -122,11 +122,11 @@ | |
| 122 | ** |
| 123 | ** Usage: %fossil status |
| 124 | ** |
| 125 | ** Report on the status of the current checkout. |
| 126 | ** |
| 127 | ** See also <a>addremove</a> |
| 128 | */ |
| 129 | void status_cmd(void){ |
| 130 | int vid; |
| 131 | db_must_be_within_tree(); |
| 132 | /* 012345678901234 */ |
| @@ -255,11 +255,11 @@ | |
| 255 | ** the current checkout. See also the <a>clean</a> command. |
| 256 | ** |
| 257 | ** Files and subdirectories whose names begin with "." are normally |
| 258 | ** ignored but can be included by adding the --dotfiles option. |
| 259 | ** |
| 260 | ** See also <a>addremove</a> |
| 261 | */ |
| 262 | void extra_cmd(void){ |
| 263 | Blob path; |
| 264 | Blob repo; |
| 265 | Stmt q; |
| 266 |