Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | actually, --date-override overrides --empty, not reverse |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a01e2d147f15a6294166740457cf3f67 |
| User & Date: | jan.nijtmans 2014-06-02 20:10:15.475 |
Context
|
2014-06-03
| ||
| 15:17 | Merge in recent patches to the SQLite 3.8.5 beta. check-in: 2ddb51c08f user: drh tags: trunk | |
|
2014-06-02
| ||
| 20:10 | actually, --date-override overrides --empty, not reverse check-in: a01e2d147f user: jan.nijtmans tags: trunk | |
| 14:52 | Updates the built-in SQLite sources to the latest 3.8.5 beta. In particular, this update includes the new ".system" and ".once" commands to the SQLite command-line utility accessed via the "fossil sql" command. check-in: 8bc47c1469 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1439 1440 1441 1442 1443 1444 1445 1446 | ** default users "anonymous", "nobody", "reader", "developer", and their ** associated permissions will be copied. ** ** Options: ** --template FILE copy settings from repository file ** --admin-user|-A USERNAME select given USERNAME as admin user ** --date-override DATETIME use DATETIME as time of the initial checkin ** --empty Do not create an initial empty checkin. | > < | 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 |
** default users "anonymous", "nobody", "reader", "developer", and their
** associated permissions will be copied.
**
** Options:
** --template FILE copy settings from repository file
** --admin-user|-A USERNAME select given USERNAME as admin user
** --date-override DATETIME use DATETIME as time of the initial checkin
** (overrides --empty as well)
** --empty Do not create an initial empty checkin.
**
** See also: clone
*/
void create_repository_cmd(void){
char *zPassword;
const char *zTemplate; /* Repository from which to copy settings */
const char *zDate; /* Date of the initial check-in */
|
| ︙ | ︙ |