Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Minor branch help doc tweak suggestion from the forum. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f488eaf5ffb864db708294cbafe4730a |
| User & Date: | stephan 2020-06-05 14:43:30.338 |
Context
|
2020-06-06
| ||
| 03:56 | Support the build from an out of source-tree directory on Windows; allow paths with spaces. ... (check-in: 0519493f46 user: ashepilko tags: trunk) | |
|
2020-06-05
| ||
| 14:43 | Minor branch help doc tweak suggestion from the forum. ... (check-in: f488eaf5ff user: stephan tags: trunk) | |
|
2020-06-04
| ||
| 21:01 | mv-rm.test: On test teardown, delete the manually created dir. ... (check-in: 5da1bd94cc user: ashepilko tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
382 383 384 385 386 387 388 | ** Either no timezone suffix or "Z" means UTC. ** ** Options: ** -R|--repository FILE Run commands on repository FILE ** ** Summary: ** fossil branch current | | | | 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
** Either no timezone suffix or "Z" means UTC.
**
** Options:
** -R|--repository FILE Run commands on repository FILE
**
** Summary:
** fossil branch current
** fossil branch info BRANCH-NAME
** fossil branch [list|ls]
** fossil branch new BRANCH-NAME BASIS
*/
void branch_cmd(void){
int n;
const char *zCmd = "list";
db_find_and_open_repository(0, 0);
if( g.argc>=3 ) zCmd = g.argv[2];
n = strlen(zCmd);
|
| ︙ | ︙ |