29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
+
-
-
+
+
|
#include <assert.h>
/*
** COMMAND: add
**
** Usage: %fossil add FILE...
**
** Add one or more files to the current checkout such that these files
** will be inserted into the repository at the next commit.
** Make arrangements to add one or more files to the current checkout
** at the next commit.
*/
void add_cmd(void){
int i;
int vid;
db_must_be_within_tree();
vid = db_lget_int("checkout",0);
|