424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
|
**
** This command does NOT remove the files from disk. It just marks the
** files as no longer being part of the project. In other words, future
** changes to the named files will not be versioned.
**
** Options:
** --metadata-only <BOOL> Non-zero to skip removing files from the
** checkout.
** --case-sensitive <BOOL> Override the case-sensitive setting.
** -n|--dry-run If given, display instead of run actions.
**
** See also: addremove, add
*/
void delete_cmd(void){
int i;
|
|
>
>
>
>
|
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
|
**
** This command does NOT remove the files from disk. It just marks the
** files as no longer being part of the project. In other words, future
** changes to the named files will not be versioned.
**
** Options:
** --metadata-only <BOOL> Non-zero to skip removing files from the
** checkout. Supersedes both the --soft and
** --hard options.
** --soft Skip removing files from the checkout.
** This supersedes the --hard option.
** --hard Remove files from the checkout.
** --case-sensitive <BOOL> Override the case-sensitive setting.
** -n|--dry-run If given, display instead of run actions.
**
** See also: addremove, add
*/
void delete_cmd(void){
int i;
|
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
|
**
** This command does NOT rename or move the files on disk. This command merely
** records the fact that filenames have changed so that appropriate notations
** can be made at the next commit/check-in.
**
** Options:
** --metadata-only <BOOL> Non-zero to skip moving files within the
** checkout.
** --case-sensitive <BOOL> Override the case-sensitive setting.
** -n|--dry-run If given, display instead of run actions.
**
** See also: changes, status
*/
void mv_cmd(void){
int i;
|
|
>
>
>
>
|
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
|
**
** This command does NOT rename or move the files on disk. This command merely
** records the fact that filenames have changed so that appropriate notations
** can be made at the next commit/check-in.
**
** Options:
** --metadata-only <BOOL> Non-zero to skip moving files within the
** checkout. Supersedes both the --soft and
** --hard options.
** --soft Skip moving files within the checkout.
** This supersedes the --hard option.
** --hard Move files within the checkout.
** --case-sensitive <BOOL> Override the case-sensitive setting.
** -n|--dry-run If given, display instead of run actions.
**
** See also: changes, status
*/
void mv_cmd(void){
int i;
|