Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Update a comment due to changes in the purpose of Fossil 2.x. No changes to code. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | symlink-refactor |
| Files: | files | file ages | folders |
| SHA3-256: |
244b84b809fc4734a318a06db5751594 |
| User & Date: | drh 2017-12-02 13:00:53.554 |
Context
|
2017-12-03
| ||
| 11:16 | Refactor the symlink processing logic so that most of the file access routines take a new parameter indicating the conditions under which symlinks should and should not be followed. ... (check-in: 1772357fc2 user: drh tags: trunk) | |
|
2017-12-02
| ||
| 13:00 | Update a comment due to changes in the purpose of Fossil 2.x. No changes to code. ... (Closed-Leaf check-in: 244b84b809 user: drh tags: symlink-refactor) | |
|
2017-11-30
| ||
| 18:07 | Fix a bug in the "fossil add" command that prevented the adding of symbolic links. ... (check-in: b259473846 user: drh tags: symlink-refactor) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
21 22 23 24 25 26 27 | #include "config.h" #include "add.h" #include <assert.h> #include <dirent.h> #include "cygsup.h" /* | | | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #include "config.h" #include "add.h" #include <assert.h> #include <dirent.h> #include "cygsup.h" /* ** WARNING: For Fossil version x.x this value was always zero. For Fossil-NG ** it will probably always be one. When this value is zero, ** files in the checkout will not be moved by the "mv" command and ** 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 "mv-rm-files" setting will be consulted instead of using ** this value. ** ** To retain the Fossil version 2.x behavior when using Fossil-NG ** the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option must be used ** -AND- the "mv-rm-files" setting must be set to zero. */ #ifndef FOSSIL_MV_RM_FILE #define FOSSIL_MV_RM_FILE (0) #endif |
| ︙ | ︙ |