Diff
Not logged in

Differences From:

File src/add.c part of check-in [7a2c37063a] - merge trunk into creole branch by bob on 2009-09-22 07:49:39. Also file src/add.c part of check-in [5bc5e88c86] - Add the --dotfiles option to the "add" command to cause fossil to include files whose name begins with "." which recursively adding files. Ticket 2e924cf9b74e. by drh on 2009-08-14 16:19:53. [view]

To:

File src/add.c part of check-in [49ed1961b1] - Added a DELETED abc.xyz message when using fossil rm. This is the same as fossil add's ADDED abc.xyz message. Also, the word DELETED was choosen over REMOVED because fossil status reports the file as DELETED. by jeremy_c on 2009-12-09 15:34:39. Also file src/add.c part of check-in [1c2d878d12] - Merge with trunk by btheado on 2009-12-13 01:16:13. [view]

@@ -199,8 +199,9 @@
              "SELECT 1 FROM vfile WHERE pathname=%Q AND NOT deleted", zPath) ){
       fossil_fatal("not in the repository: %s", zName);
     }else{
       db_multi_exec("UPDATE vfile SET deleted=1 WHERE pathname=%Q", zPath);
+      printf("DELETED  %s\n", zPath);
     }
     blob_reset(&pathname);
     free(zName);
   }