Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch msw-docco Excluding Merge-Ins
This is equivalent to a diff from 3c637382b4 to 626a317e5c
2012-04-19
| ||
15:18 | Merge documentation updates from msw-docco into trunk. check-in: 5f6b495230 user: drh tags: trunk | |
14:34 | Catch up w/ trunk & document --case-sensitive option in the add and addremove commands. Leaf check-in: 626a317e5c user: martin.weber tags: msw-docco | |
2012-04-17
| ||
22:31 | Merge the msw-docco changes into trunk. check-in: 3c637382b4 user: drh tags: trunk | |
21:56 | Pull in the latest pre-release version of SQLite, including the new shell. check-in: 4faefe630e user: drh tags: trunk | |
2012-04-16
| ||
15:53 | Document some more options of fossil branch new: --nosign, --user-override and --date-override. Fix a typo in fossil branch ls docco. check-in: 7727eb12b0 user: martin.weber tags: msw-docco | |
Changes to src/add.c.
194 194 ** the "--dotfiles" option to the command-line. 195 195 ** 196 196 ** The --ignore option is a comma-separate list of glob patterns for files 197 197 ** to be excluded. Example: '*.o,*.obj,*.exe' If the --ignore option 198 198 ** does not appear on the command line then the "ignore-glob" setting is 199 199 ** used. 200 200 ** 201 +** The --case-sensitive option determines whether or not filenames should 202 +** be treated case sensitive or not. If the option is not given, the default 203 +** depends on the global setting, or the operating system default, if not set. 204 +** 201 205 ** Options: 202 206 ** 203 -** --dotfiles include files beginning with a dot (".") 204 -** --ignore <CSG> ignore files matching patterns from the 205 -** comma separated list of glob patterns. 207 +** --case-sensitive <BOOL> override case-sensitive setting 208 +** --dotfiles include files beginning with a dot (".") 209 +** --ignore <CSG> ignore files matching patterns from the 210 +** comma separated list of glob patterns. 206 211 ** 207 212 ** See also: addremove, rm 208 213 */ 209 214 void add_cmd(void){ 210 215 int i; /* Loop counter */ 211 216 int vid; /* Currently checked out version */ 212 217 int nRoot; /* Full path characters in g.zLocalRoot */ ................................................................................ 406 411 ** 407 412 ** The command does not "commit". You must run the "commit" separately 408 413 ** as a separate step. 409 414 ** 410 415 ** Files and directories whose names begin with "." are ignored unless 411 416 ** the --dotfiles option is used. 412 417 ** 413 -** The --ignore option overrides the "ignore-glob" setting. See 418 +** The --ignore option overrides the "ignore-glob" setting, as does the 419 +** --case-sensitive option with the "case-sensitive" setting. See the 414 420 ** documentation on the "settings" command for further information. 415 421 ** 416 422 ** The --test option shows what would happen without actually doing anything. 417 423 ** 418 424 ** This command can be used to track third party software. 419 425 ** 420 426 ** Options: 421 -** --dotfiles include files beginning with a dot (".") 422 -** --ignore <CSG> ignore files matching patterns from the 423 -** comma separated list of glob patterns. 424 -** --test If given, show what would be done without doing so. 427 +** --case-sensitive <BOOL> override case-sensitive setting 428 +** --dotfiles include files beginning with a dot (".") 429 +** --ignore <CSG> ignore files matching patterns from the 430 +** comma separated list of glob patterns. 431 +** --test If given, display instead of run actions 425 432 ** 426 433 ** See also: add, rm 427 434 */ 428 435 void addremove_cmd(void){ 429 436 Blob path; 430 437 const char *zIgnoreFlag = find_option("ignore",0,1); 431 438 int allFlag = find_option("dotfiles",0,0)!=0;