Fossil SCM
A bullet point I forgot two checkins ago: * Document ALL supported options for the given commands. Checkin #2/n.
Commit
25d023f3a469f69b4825974a10a75abc225cede1
Parent
b42d1a9dcf41fb0…
1 file changed
+6
-2
M
src/db.c
+6
-2
| --- src/db.c | ||
| +++ src/db.c | ||
| @@ -1642,19 +1642,23 @@ | ||
| 1642 | 1642 | } |
| 1643 | 1643 | |
| 1644 | 1644 | /* |
| 1645 | 1645 | ** COMMAND: open |
| 1646 | 1646 | ** |
| 1647 | -** Usage: %fossil open FILENAME ?VERSION? ?--keep? ?--nested? | |
| 1647 | +** Usage: %fossil open FILENAME ?VERSION? ?OPTIONS? | |
| 1648 | 1648 | ** |
| 1649 | 1649 | ** Open a connection to the local repository in FILENAME. A checkout |
| 1650 | 1650 | ** for the repository is created with its root at the working directory. |
| 1651 | 1651 | ** If VERSION is specified then that version is checked out. Otherwise |
| 1652 | 1652 | ** the latest version is checked out. No files other than "manifest" |
| 1653 | 1653 | ** and "manifest.uuid" are modified if the --keep option is present. |
| 1654 | 1654 | ** |
| 1655 | -** See also the "close" command. | |
| 1655 | +** Options: | |
| 1656 | +** --keep Only modify the manifest and manifest.uuid files | |
| 1657 | +** --nested Allow opening a repository inside an opened checkout | |
| 1658 | +** | |
| 1659 | +** See also: close | |
| 1656 | 1660 | */ |
| 1657 | 1661 | void cmd_open(void){ |
| 1658 | 1662 | Blob path; |
| 1659 | 1663 | int vid; |
| 1660 | 1664 | int keepFlag; |
| 1661 | 1665 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -1642,19 +1642,23 @@ | |
| 1642 | } |
| 1643 | |
| 1644 | /* |
| 1645 | ** COMMAND: open |
| 1646 | ** |
| 1647 | ** Usage: %fossil open FILENAME ?VERSION? ?--keep? ?--nested? |
| 1648 | ** |
| 1649 | ** Open a connection to the local repository in FILENAME. A checkout |
| 1650 | ** for the repository is created with its root at the working directory. |
| 1651 | ** If VERSION is specified then that version is checked out. Otherwise |
| 1652 | ** the latest version is checked out. No files other than "manifest" |
| 1653 | ** and "manifest.uuid" are modified if the --keep option is present. |
| 1654 | ** |
| 1655 | ** See also the "close" command. |
| 1656 | */ |
| 1657 | void cmd_open(void){ |
| 1658 | Blob path; |
| 1659 | int vid; |
| 1660 | int keepFlag; |
| 1661 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -1642,19 +1642,23 @@ | |
| 1642 | } |
| 1643 | |
| 1644 | /* |
| 1645 | ** COMMAND: open |
| 1646 | ** |
| 1647 | ** Usage: %fossil open FILENAME ?VERSION? ?OPTIONS? |
| 1648 | ** |
| 1649 | ** Open a connection to the local repository in FILENAME. A checkout |
| 1650 | ** for the repository is created with its root at the working directory. |
| 1651 | ** If VERSION is specified then that version is checked out. Otherwise |
| 1652 | ** the latest version is checked out. No files other than "manifest" |
| 1653 | ** and "manifest.uuid" are modified if the --keep option is present. |
| 1654 | ** |
| 1655 | ** Options: |
| 1656 | ** --keep Only modify the manifest and manifest.uuid files |
| 1657 | ** --nested Allow opening a repository inside an opened checkout |
| 1658 | ** |
| 1659 | ** See also: close |
| 1660 | */ |
| 1661 | void cmd_open(void){ |
| 1662 | Blob path; |
| 1663 | int vid; |
| 1664 | int keepFlag; |
| 1665 |