Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | A bullet point I forgot two checkins ago: * Document ALL supported options for the given commands. Checkin #2/n. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | msw-docco |
| Files: | files | file ages | folders |
| SHA1: |
25d023f3a469f69b4825974a10a75abc |
| User & Date: | martin.weber 2011-09-14 00:39:56.507 |
Context
|
2011-09-15
| ||
| 00:54 | Further progress towards jerusalem on yet another holy docco crusade! Checkin #3/n check-in: 17f21f2482 user: martin.weber tags: msw-docco | |
|
2011-09-14
| ||
| 11:14 | Merge documentation updates from the msw-docco branch into trunk. check-in: 2210be19cc user: drh tags: trunk | |
| 00:39 | A bullet point I forgot two checkins ago: * Document ALL supported options for the given commands. Checkin #2/n. check-in: 25d023f3a4 user: martin.weber tags: msw-docco | |
| 00:33 | Of course THAT was the trunk version I wanted to merge with... check-in: b42d1a9dcf user: martin.weber tags: msw-docco | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1640 1641 1642 1643 1644 1645 1646 | db_swap_connections(); blob_reset(&full); } /* ** COMMAND: open ** | | > > > > | | 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 |
db_swap_connections();
blob_reset(&full);
}
/*
** COMMAND: open
**
** Usage: %fossil open FILENAME ?VERSION? ?OPTIONS?
**
** Open a connection to the local repository in FILENAME. A checkout
** for the repository is created with its root at the working directory.
** If VERSION is specified then that version is checked out. Otherwise
** the latest version is checked out. No files other than "manifest"
** and "manifest.uuid" are modified if the --keep option is present.
**
** Options:
** --keep Only modify the manifest and manifest.uuid files
** --nested Allow opening a repository inside an opened checkout
**
** See also: close
*/
void cmd_open(void){
Blob path;
int vid;
int keepFlag;
int allowNested;
static char *azNewArgv[] = { 0, "checkout", "--prompt", 0, 0, 0 };
|
| ︙ | ︙ |