Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add '-k' as short option for '--keep' in 'fossil open', per forum observation. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
bbd3d25654f45cfb1f9c2062729dc2e6 |
| User & Date: | danield 2021-12-14 14:45:52.217 |
Context
|
2021-12-14
| ||
| 14:49 | Added help text doc for -k alias for --keep for the open command, per [forum:6f17cf142f80e2c3 | forum post 6f17cf142f80e2c3]. check-in: 8fee91d408 user: stephan tags: trunk | |
| 14:45 | Add '-k' as short option for '--keep' in 'fossil open', per forum observation. check-in: bbd3d25654 user: danield tags: trunk | |
|
2021-12-12
| ||
| 16:18 | The "Summary Line Convention In Commit Comments" section in gitusers.md now covers the related setting under Admin -> Timeline. check-in: c33ffed3eb user: wyoung tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
3584 3585 3586 3587 3588 3589 3590 |
int isUri = 0; /* True if REPOSITORY is a URI */
int nLocal; /* Number of preexisting files in cwd */
int bNosync = 0; /* --nosync. Omit auto-sync */
int bVerbose = 0; /* --verbose option for clone */
url_proxy_options();
emptyFlag = find_option("empty",0,0)!=0;
| | | 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 |
int isUri = 0; /* True if REPOSITORY is a URI */
int nLocal; /* Number of preexisting files in cwd */
int bNosync = 0; /* --nosync. Omit auto-sync */
int bVerbose = 0; /* --verbose option for clone */
url_proxy_options();
emptyFlag = find_option("empty",0,0)!=0;
keepFlag = find_option("keep","k",0)!=0;
forceMissingFlag = find_option("force-missing",0,0)!=0;
allowNested = find_option("nested",0,0)!=0;
setmtimeFlag = find_option("setmtime",0,0)!=0;
zWorkDir = find_option("workdir",0,1);
zRepoDir = find_option("repodir",0,1);
bForce = find_option("force","f",0)!=0;
bNosync = find_option("nosync",0,0)!=0;
|
| ︙ | ︙ |