Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Update command help for mv/rm to better reflect the new functionality. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | mvAndRmFiles |
| Files: | files | file ages | folders |
| SHA1: |
7b54a4e839c9b078cf1236a3fa36a4ac |
| User & Date: | mistachkin 2015-03-15 03:49:37.415 |
Context
|
2015-03-23
| ||
| 01:29 | Merge updates from trunk. ... (check-in: 78829b7089 user: mistachkin tags: mvAndRmFiles) | |
|
2015-03-15
| ||
| 03:49 | Update command help for mv/rm to better reflect the new functionality. ... (check-in: 7b54a4e839 user: mistachkin tags: mvAndRmFiles) | |
| 03:45 | Merge updates from trunk. ... (check-in: be6af3adca user: mistachkin tags: mvAndRmFiles) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
418 419 420 421 422 423 424 | ** COMMAND: delete ** COMMAND: forget* ** ** Usage: %fossil rm|delete|forget FILE1 ?FILE2 ...? ** ** Remove one or more files or directories from the repository. ** | | | | > > > > | 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | ** COMMAND: delete ** COMMAND: forget* ** ** Usage: %fossil rm|delete|forget FILE1 ?FILE2 ...? ** ** Remove one or more files or directories from the repository. ** ** This command does NOT normally remove the files from disk. It just ** marks the files as no longer being part of the project. In other ** words, future changes to the named files will not be versioned. ** ** WARNING: If either the "--metadata-only 0" or "--hard" option is ** specified -OR- the "remove-files" setting is non-zero, ** files WILL BE removed from disk as well. ** ** Options: ** --metadata-only <BOOL> Non-zero to skip removing files from the ** checkout. Supersedes both the --soft and ** --hard options. ** --soft Skip removing files from the checkout. ** This supersedes the --hard option. |
| ︙ | ︙ | |||
772 773 774 775 776 777 778 | ** ** Usage: %fossil mv|rename OLDNAME NEWNAME ** or: %fossil mv|rename OLDNAME... DIR ** ** Move or rename one or more files or directories within the repository tree. ** You can either rename a file or directory or move it to another subdirectory. ** | | | | > > > > | 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | ** ** Usage: %fossil mv|rename OLDNAME NEWNAME ** or: %fossil mv|rename OLDNAME... DIR ** ** Move or rename one or more files or directories within the repository tree. ** You can either rename a file or directory or move it to another subdirectory. ** ** This command does NOT normally rename or move the files on disk. This ** command merely records the fact that filenames have changed so that ** appropriate notations can be made at the next commit/check-in. ** ** WARNING: If either the "--metadata-only 0" or "--hard" option is ** specified -OR- the "move-files" setting is non-zero, ** files WILL BE renamed or moved on disk as well. ** ** Options: ** --metadata-only <BOOL> Non-zero to skip moving files within the ** checkout. Supersedes both the --soft and ** --hard options. ** --soft Skip moving files within the checkout. ** This supersedes the --hard option. |
| ︙ | ︙ |