155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
/* Clear the undo/redo stack */
undo_reset();
/* Commit */
db_end_transaction(0);
/* Autosync and do a push? */
if( do_autosync() ){
g.argc=2;
g.argv[1]="push";
push_cmd();
}
}
/*
** COMMAND: branch
**
** Usage: %fossil branch SUBCOMMAND ... ?-R|--repository FILE?
**
|
|
|
<
<
<
<
|
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
/* Clear the undo/redo stack */
undo_reset();
/* Commit */
db_end_transaction(0);
/* Do an autosync push, if requested */
autosync(0);
}
/*
** COMMAND: branch
**
** Usage: %fossil branch SUBCOMMAND ... ?-R|--repository FILE?
**
|