Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added verbiage to --ignore options of add and addremove to state that they apply to unmanaged files only. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
4d2c34b0d70fb86bc80da9173fc5890b |
| User & Date: | sdr 2017-04-11 21:37:15.957 |
Context
|
2017-04-12
| ||
| 11:26 | Suppress "database locked" warnings on the "PRAGMA optimize" that occurs as the process is shutting down. ... (check-in: 41956e7000 user: drh tags: trunk) | |
|
2017-04-11
| ||
| 21:37 | Added verbiage to --ignore options of add and addremove to state that they apply to unmanaged files only. ... (check-in: 4d2c34b0d7 user: sdr tags: trunk) | |
| 20:54 | Version 2.2 ... (check-in: 81d7d3f43e user: drh tags: trunk, release, version-2.2) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
270 271 272 273 274 275 276 |
** depends on the global setting, or the operating system default, if not set.
**
** Options:
**
** --case-sensitive <BOOL> Override the case-sensitive setting.
** --dotfiles include files beginning with a dot (".")
** -f|--force Add files without prompting
| | | | 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
** depends on the global setting, or the operating system default, if not set.
**
** Options:
**
** --case-sensitive <BOOL> Override the case-sensitive setting.
** --dotfiles include files beginning with a dot (".")
** -f|--force Add files without prompting
** --ignore <CSG> Ignore unmanaged files matching patterns from
** the comma separated list of glob patterns.
** --clean <CSG> Also ignore files matching patterns from
** the comma separated list of glob patterns.
** --no-dir-symlinks Disables support for directory symlinks.
**
** See also: addremove, rm
*/
void add_cmd(void){
|
| ︙ | ︙ | |||
617 618 619 620 621 622 623 |
** anything.
**
** This command can be used to track third party software.
**
** Options:
** --case-sensitive <BOOL> Override the case-sensitive setting.
** --dotfiles Include files beginning with a dot (".")
| | | | 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 |
** anything.
**
** This command can be used to track third party software.
**
** Options:
** --case-sensitive <BOOL> Override the case-sensitive setting.
** --dotfiles Include files beginning with a dot (".")
** --ignore <CSG> Ignore unmanaged files matching patterns from
** the comma separated list of glob patterns.
** --clean <CSG> Also ignore files matching patterns from
** the comma separated list of glob patterns.
** -n|--dry-run If given, display instead of run actions.
** --no-dir-symlinks Disables support for directory symlinks.
**
** See also: add, rm
*/
|
| ︙ | ︙ |