Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | More help text consistency tweaks from forum discussion [forum:8c644048f0]: --repository REPO. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2f7c93f49c0e3dd415b55f1bfe595702 |
| User & Date: | stephan 2021-03-11 15:40:46.718 |
Context
|
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 | |
| 13:22 | Numerous help text consistency tweaks based on forum discussion [forum:8c644048f0]. check-in: 4cb50c4ef3 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 FILE
*/
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 FILE.
** --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 FILE
**
** 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 FILE
**
** 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 FILE
** -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/export.c.
| ︙ | ︙ | |||
476 477 478 479 480 481 482 | ** If the "--import-marks FILE" option is used, it contains a list of ** rids to skip. ** ** If the "--export-marks FILE" option is used, the rid of all commits and ** blobs written on exit for use with "--import-marks" on the next run. ** ** Options: | | | | | | 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 | ** If the "--import-marks FILE" option is used, it contains a list of ** rids to skip. ** ** If the "--export-marks FILE" option is used, the rid of all commits and ** blobs written on exit for use with "--import-marks" on the next run. ** ** Options: ** --export-marks FILE Export rids of exported data to FILE ** --import-marks FILE Read rids of data to ignore from FILE ** --rename-trunk NAME Use NAME as name of exported trunk branch ** -R|--repository REPO Export the given REPOSITORY ** ** See also: import */ /* ** COMMAND: export* ** ** This command is deprecated. Use "fossil git export" instead. |
| ︙ | ︙ |
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 FILE
** -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 FILE
** -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;
|
| ︙ | ︙ |
Changes to src/rebuild.c.
| ︙ | ︙ | |||
1282 1283 1284 1285 1286 1287 1288 | ** artifacts to the file system. The DESTINATION directory will be populated ** with subdirectories AA and files AA/BBBBBBBBB.., where AABBBBBBBBB.. is the ** 40+ character artifact ID, AA the first 2 characters. ** If -L|--prefixlength is given, the length (default 2) of the directory prefix ** can be set to 0,1,..,9 characters. ** ** Options: | | | 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 | ** artifacts to the file system. The DESTINATION directory will be populated ** with subdirectories AA and files AA/BBBBBBBBB.., where AABBBBBBBBB.. is the ** 40+ character artifact ID, AA the first 2 characters. ** If -L|--prefixlength is given, the length (default 2) of the directory prefix ** can be set to 0,1,..,9 characters. ** ** Options: ** -R|--repository REPO Deconstruct given REPOSITORY. ** -K|--keep-rid1 Save the filename of the artifact with RID=1 to ** the file .rid1 in the DESTINATION directory. ** -L|--prefixlength N Set the length of the names of the DESTINATION ** subdirectories to N. ** --private Include private artifacts. ** -P|--keep-private Save the list of private artifacts to the file ** .private in the DESTINATION directory (implies |
| ︙ | ︙ |
Changes to src/tkt.c.
| ︙ | ︙ | |||
1237 1238 1239 1240 1241 1242 1243 | ** Run various subcommands to control tickets ** ** > fossil ticket show (REPORTTITLE|REPORTNR) ?TICKETFILTER? ?OPTIONS? ** ** Options: ** -l|--limit LIMITCHAR ** -q|--quote | | | 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 | ** Run various subcommands to control tickets ** ** > fossil ticket show (REPORTTITLE|REPORTNR) ?TICKETFILTER? ?OPTIONS? ** ** Options: ** -l|--limit LIMITCHAR ** -q|--quote ** -R|--repository REPO ** ** Run the ticket report, identified by the report format title ** used in the GUI. The data is written as flat file on stdout, ** using TAB as separator. The separator can be changed using ** the -l or --limit option. ** ** If TICKETFILTER is given on the commandline, the query is |
| ︙ | ︙ |
Changes to src/unversioned.c.
| ︙ | ︙ | |||
289 290 291 292 293 294 295 | ** ** touch FILE ... Update the TIMESTAMP on all of the listed files ** ** Options: ** ** --mtime TIMESTAMP Use TIMESTAMP instead of "now" for the "add", ** "edit", "remove", and "touch" subcommands. | | | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
**
** touch FILE ... Update the TIMESTAMP on all of the listed files
**
** Options:
**
** --mtime TIMESTAMP Use TIMESTAMP instead of "now" for the "add",
** "edit", "remove", and "touch" subcommands.
** -R|--repository REPO Use FILE as the repository
*/
void unversioned_cmd(void){
const char *zCmd;
int nCmd;
const char *zMtime = find_option("mtime", 0, 1);
sqlite3_int64 mtime;
db_find_and_open_repository(0, 0);
|
| ︙ | ︙ |
Changes to src/user.c.
| ︙ | ︙ | |||
324 325 326 327 328 329 330 |
strip_string(pIn, z);
}
}
/*
** COMMAND: user*
**
| | | 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
strip_string(pIn, z);
}
}
/*
** COMMAND: user*
**
** Usage: %fossil user SUBCOMMAND ... ?-R|--repository REPO?
**
** Run various subcommands on users of the open repository or of
** the repository identified by the -R or --repository option.
**
** > fossil user capabilities USERNAME ?STRING?
**
** Query or set the capabilities for user USERNAME
|
| ︙ | ︙ |
Changes to src/winhttp.c.
| ︙ | ︙ | |||
970 971 972 973 974 975 976 | ** Use URL as the base (useful for reverse proxies) ** ** -P|--port TCPPORT ** ** Specifies the TCP port (default port is 8080) on which the ** server should listen. ** | | | 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 | ** Use URL as the base (useful for reverse proxies) ** ** -P|--port TCPPORT ** ** Specifies the TCP port (default port is 8080) on which the ** server should listen. ** ** -R|--repository REPO ** ** Specifies the name of the repository to be served. ** The repository option may be omitted if the working directory ** is within an open checkout. ** The REPOSITORY can be a directory (aka folder) that contains ** one or more repositories with names ending in ".fossil". ** In that case, the first element of the URL is used to select |
| ︙ | ︙ |