219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
}
/* Commit */
db_end_transaction(0);
/* Do an autosync push, if requested */
if( !isPrivate ) autosync_loop(SYNC_PUSH, 0);
}
/*
** Create a TEMP table named "tmp_brlist" with 7 columns:
**
** name Name of the branch
** mtime Time of last checkin on this branch
|
|
|
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
}
/* Commit */
db_end_transaction(0);
/* Do an autosync push, if requested */
if( !isPrivate ) autosync_loop(SYNC_PUSH, 0, "branch");
}
/*
** Create a TEMP table named "tmp_brlist" with 7 columns:
**
** name Name of the branch
** mtime Time of last checkin on this branch
|