Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | More help text consistency tweaks from forum discussion [forum:8c644048f0]: FILE vs REPO. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
decd537016bf5129cb7f66020d3a917f |
| User & Date: | stephan 2021-03-11 18:20:46.058 |
References
|
2022-01-16
| ||
| 18:42 | The output of "fossil configuration --help" had two different ways -R was described, one wrong. The newer one was of a more consistent format with the rest of the help ([decd537016 | thus why it was added]) so removed the older one and reworked the newer one to be more accurate. check-in: 6cb0fc2591 user: wyoung tags: trunk | |
Context
|
2021-03-12
| ||
| 07:08 | Added www/delta-manifests.md, a discussion about the pros and cons of delta manifests. check-in: fbd16f3fff user: stephan tags: trunk | |
|
2021-03-11
| ||
| 18:20 | More help text consistency tweaks from forum discussion [forum:8c644048f0]: FILE vs REPO. check-in: decd537016 user: stephan tags: trunk | |
| 15:40 | More help text consistency tweaks from forum discussion [forum:8c644048f0]: --repository REPO. check-in: 2f7c93f49c user: stephan tags: trunk | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
382 383 384 385 386 387 388 | ** year-month-day form, it may be truncated, the "T" may be ** replaced by a space, and it may also name a timezone offset ** from UTC as "-HH:MM" (westward) or "+HH:MM" (eastward). ** Either no timezone suffix or "Z" means UTC. ** ** Options valid for all subcommands: ** | | | 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
** year-month-day form, it may be truncated, the "T" may be
** replaced by a space, and it may also name a timezone offset
** from UTC as "-HH:MM" (westward) or "+HH:MM" (eastward).
** Either no timezone suffix or "Z" means UTC.
**
** Options valid for all subcommands:
**
** -R|--repository REPO Run commands on repository REPO
*/
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);
|
| ︙ | ︙ |
Changes to src/checkin.c.
| ︙ | ︙ | |||
675 676 677 678 679 680 681 | ** are used, -t sorts by modification time, otherwise by commit time. ** ** Options: ** --age Show when each file was committed. ** -v|--verbose Provide extra information about each file. ** -t Sort output in time order. ** -r VERSION The specific check-in to list. | | | 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 |
** are used, -t sorts by modification time, otherwise by commit time.
**
** Options:
** --age Show when each file was committed.
** -v|--verbose Provide extra information about each file.
** -t Sort output in time order.
** -r VERSION The specific check-in to list.
** -R|--repository REPO Extract info from repository REPO.
** --hash With -v, verify file status using hashing
** rather than relying on file sizes and mtimes.
**
** See also: [[changes]], [[extras]], [[status]]
*/
void ls_cmd(void){
int vid;
|
| ︙ | ︙ |
Changes to src/configure.c.
| ︙ | ︙ | |||
767 768 769 770 771 772 773 | ** ** > fossil configuration sync AREA ?URL? ** ** Synchronize configuration changes in the local repository with ** the remote repository at URL. ** ** Options: | | | 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 |
**
** > fossil configuration sync AREA ?URL?
**
** Synchronize configuration changes in the local repository with
** the remote repository at URL.
**
** Options:
** -R|--repository REPO Extract info from repository REPO
**
** See also: [[settings]], [[unset]]
*/
void configuration_cmd(void){
int n;
const char *zMethod;
db_find_and_open_repository(0, 0);
|
| ︙ | ︙ |
Changes to src/content.c.
| ︙ | ︙ | |||
322 323 324 325 326 327 328 | ** Usage: %fossil artifact ARTIFACT-ID ?OUTPUT-FILENAME? ?OPTIONS? ** ** Extract an artifact by its artifact hash and write the results on ** standard output, or if the optional 4th argument is given, in ** the named output file. ** ** Options: | | | 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
** Usage: %fossil artifact ARTIFACT-ID ?OUTPUT-FILENAME? ?OPTIONS?
**
** Extract an artifact by its artifact hash and write the results on
** standard output, or if the optional 4th argument is given, in
** the named output file.
**
** Options:
** -R|--repository REPO Extract artifacts from repository REPO
**
** See also: [[finfo]]
*/
void artifact_cmd(void){
int rid;
Blob content;
const char *zFile;
|
| ︙ | ︙ |
Changes to src/descendants.c.
| ︙ | ︙ | |||
341 342 343 344 345 346 347 | ** ** Usage: %fossil descendants ?CHECKIN? ?OPTIONS? ** ** Find all leaf descendants of the check-in specified or if the argument ** is omitted, of the check-in currently checked out. ** ** Options: | | | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
**
** Usage: %fossil descendants ?CHECKIN? ?OPTIONS?
**
** Find all leaf descendants of the check-in specified or if the argument
** is omitted, of the check-in currently checked out.
**
** Options:
** -R|--repository REPO Extract info from repository REPO
** -W|--width N Width of lines (default is to auto-detect).
** Must be greater than 20 or else 0 for no
** limit, resulting in a one line per entry.
**
** See also: [[finfo]], [[info]], [[leaves]]
*/
void descendants_cmd(void){
|
| ︙ | ︙ |
Changes to src/finfo.c.
| ︙ | ︙ | |||
239 240 241 242 243 244 245 | ** Usage: %fossil cat FILENAME ... ?OPTIONS? ** ** Print on standard output the content of one or more files as they exist ** in the repository. The version currently checked out is shown by default. ** Other versions may be specified using the -r option. ** ** Options: | | | 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
** Usage: %fossil cat FILENAME ... ?OPTIONS?
**
** Print on standard output the content of one or more files as they exist
** in the repository. The version currently checked out is shown by default.
** Other versions may be specified using the -r option.
**
** Options:
** -R|--repository REPO Extract artifacts from repository REPO
** -r VERSION The specific check-in containing the file
**
** See also: [[finfo]]
*/
void cat_cmd(void){
int i;
Blob content, fname;
|
| ︙ | ︙ |
Changes to src/info.c.
| ︙ | ︙ | |||
186 187 188 189 190 191 192 | ** the argument is the name of a object within the repository. ** ** Use the "finfo" command to get information about a specific ** file in a checkout. ** ** Options: ** | | | 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
** the argument is the name of a object within the repository.
**
** Use the "finfo" command to get information about a specific
** file in a checkout.
**
** Options:
**
** -R|--repository REPO Extract info from repository REPO
** -v|--verbose Show extra information about repositories
**
** See also: [[annotate]], [[artifact]], [[finfo]], [[timeline]]
*/
void info_cmd(void){
i64 fsize;
int verboseFlag = find_option("verbose","v",0)!=0;
|
| ︙ | ︙ |