Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix some inaccurate comments. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | mvAndRmFiles |
| Files: | files | file ages | folders |
| SHA1: |
af50114075d559d7f762437dc64bec53 |
| User & Date: | mistachkin 2015-04-05 20:08:40.537 |
Context
|
2015-04-05
| ||
| 20:15 | Update TH1 docs. ... (check-in: 095eb14c5b user: mistachkin tags: mvAndRmFiles) | |
| 20:08 | Fix some inaccurate comments. ... (check-in: af50114075 user: mistachkin tags: mvAndRmFiles) | |
| 20:02 | Merge updates from trunk. ... (check-in: 55f7ec6c5d user: mistachkin tags: mvAndRmFiles) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
31 32 33 34 35 36 37 | ** ** If the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option is used, ** the "move-files" setting will be consulted instead of using ** this value. ** ** To retain the Fossil version 1.x behavior when using Fossil 2.x, ** the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option must be used | | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | ** ** If the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option is used, ** the "move-files" setting will be consulted instead of using ** this value. ** ** To retain the Fossil version 1.x behavior when using Fossil 2.x, ** the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option must be used ** -AND- the "move-files" setting must be set to zero. */ #ifndef FOSSIL_MV_CHECKOUT_FILE_ON_MV #define FOSSIL_MV_CHECKOUT_FILE_ON_MV (0) #endif /* ** WARNING: For Fossil version 1.x this value was always zero. For Fossil ** 2.x, it will probably always be one. When this value is zero, ** files in the checkout will not be removed by the "rm" command. ** ** If the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option is used, ** the "remove-files" setting will be consulted instead of using ** this value. ** ** To retain the Fossil version 1.x behavior when using Fossil 2.x, ** the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option must be used ** -AND- the "remove-files" setting must be set to zero. */ #ifndef FOSSIL_RM_CHECKOUT_FILE_ON_RM #define FOSSIL_RM_CHECKOUT_FILE_ON_RM (0) #endif /* ** This routine returns the names of files in a working checkout that |
| ︙ | ︙ |