Fossil

Check-in [8cf976d2]
Login

Check-in [8cf976d2]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add "fossil forget" as alias to "fossil rm|delete". This opens up the "fossil rm" command for behavior modification, as suggested on ML.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 8cf976d24689ae9ef42a2de78c5c7e945ce70905
User & Date: jan.nijtmans 2015-03-09 09:09:06
Context
2015-03-09
11:15
Add extra space between lines of the file-list in a timeline. ... (check-in: c68c68d9 user: drh tags: trunk)
09:09
Add "fossil forget" as alias to "fossil rm|delete". This opens up the "fossil rm" command for behavior modification, as suggested on ML. ... (check-in: 8cf976d2 user: jan.nijtmans tags: trunk)
08:58
Eliminate some unnecessary end-of-line spacing ... (check-in: 7fbc1c3a user: jan.nijtmans tags: trunk)
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to src/add.c.

331
332
333
334
335
336
337
338

339
340
341
342
343
344
345
346
347
348

  add_files_in_sfile(vid);
  db_end_transaction(0);
}

/*
** COMMAND: rm
** COMMAND: delete*

**
** Usage: %fossil rm FILE1 ?FILE2 ...?
**    or: %fossil delete FILE1 ?FILE2 ...?
**
** Remove one or more files or directories from the repository.
**
** 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.
**







|
>

|
<







331
332
333
334
335
336
337
338
339
340
341

342
343
344
345
346
347
348

  add_files_in_sfile(vid);
  db_end_transaction(0);
}

/*
** COMMAND: rm
** COMMAND: delete
** COMMAND: forget*
**
** Usage: %fossil rm|delete|forget FILE1 ?FILE2 ...?

**
** Remove one or more files or directories from the repository.
**
** 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.
**