Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | remove unused variable |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | cleanX-no-clean-glob |
| Files: | files | file ages | folders |
| SHA1: |
3da761fce1433b0cec6d8e715f6b6850 |
| User & Date: | jan.nijtmans 2013-06-04 14:07:05.176 |
Context
|
2013-06-06
| ||
| 12:16 | merge trunk ... (check-in: cf3d716e2f user: jan.nijtmans tags: cleanX-no-clean-glob) | |
|
2013-06-04
| ||
| 14:07 | remove unused variable ... (check-in: 3da761fce1 user: jan.nijtmans tags: cleanX-no-clean-glob) | |
|
2013-06-03
| ||
| 07:53 | Rebase. Remove --clean option and "clean-glob" setting. Implement new "allow-clean-x" setting. ... (check-in: b3201c9111 user: jan.nijtmans tags: cleanX-no-clean-glob) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
466 467 468 469 470 471 472 |
** comma separated list of glob patterns.
** -n|--dry-run If given, display instead of run actions
**
** See also: add, rm
*/
void addremove_cmd(void){
Blob path;
| < | | 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 |
** comma separated list of glob patterns.
** -n|--dry-run If given, display instead of run actions
**
** See also: add, rm
*/
void addremove_cmd(void){
Blob path;
const char *zIgnoreFlag = find_option("ignore",0,1);
unsigned scanFlags = find_option("dotfiles",0,0)!=0 ? SCAN_ALL : 0;
int dryRunFlag = find_option("dry-run","n",0)!=0;
int n;
Stmt q;
int vid;
int nAdd = 0;
int nDelete = 0;
Glob *pIgnore;
if( !dryRunFlag ){
dryRunFlag = find_option("test",0,0)!=0; /* deprecated */
}
capture_case_sensitive_option();
db_must_be_within_tree();
if( zIgnoreFlag==0 ){
|
| ︙ | ︙ |