271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
free(zName);
}
db_multi_exec("DELETE FROM vfile WHERE deleted AND rid=0");
db_end_transaction(0);
}
/*
** COMMAND: import ?--dotfiles? ?--ignore GLOBPATTERN?
**
** Usage: %fossil import
**
** If used in a checkout, the current checkout file tree is synchronized
** with the repository:
** * all files, existing in the file tree but not in the repository
** (files displayed using the <a>extra</a> command)
** are added to the repository - see also <a>add</a>
** * all files, existing in the repository, not existing in the file tree
|
|
|
|
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
free(zName);
}
db_multi_exec("DELETE FROM vfile WHERE deleted AND rid=0");
db_end_transaction(0);
}
/*
** COMMAND: addremove ?--dotfiles? ?--ignore GLOBPATTERN?
**
** Usage: %fossil addremove
**
** If used in a checkout, the current checkout file tree is synchronized
** with the repository:
** * all files, existing in the file tree but not in the repository
** (files displayed using the <a>extra</a> command)
** are added to the repository - see also <a>add</a>
** * all files, existing in the repository, not existing in the file tree
|