Fossil SCM
Revise and simplify the list of 1st-tier commands that are shown by the "fossil help" command.
Commit
84f697e570a80431b2af7047eb451b995942ff2e7b0ed93164590ad02fe7e84d
Parent
d2ad5f2fe71e0e7…
10 files changed
+1
-1
+1
-1
+4
-3
+1
-1
+1
-1
+1
-1
+1
-1
+2
-2
+6
-4
+2
-1
+1
-1
| --- src/bundle.c | ||
| +++ src/bundle.c | ||
| @@ -716,11 +716,11 @@ | ||
| 716 | 716 | } |
| 717 | 717 | db_end_transaction(0); |
| 718 | 718 | } |
| 719 | 719 | |
| 720 | 720 | /* |
| 721 | -** COMMAND: bundle | |
| 721 | +** COMMAND: bundle* | |
| 722 | 722 | ** |
| 723 | 723 | ** Usage: %fossil bundle SUBCOMMAND ARGS... |
| 724 | 724 | ** |
| 725 | 725 | ** > fossil bundle append BUNDLE FILE... |
| 726 | 726 | ** |
| 727 | 727 |
| --- src/bundle.c | |
| +++ src/bundle.c | |
| @@ -716,11 +716,11 @@ | |
| 716 | } |
| 717 | db_end_transaction(0); |
| 718 | } |
| 719 | |
| 720 | /* |
| 721 | ** COMMAND: bundle |
| 722 | ** |
| 723 | ** Usage: %fossil bundle SUBCOMMAND ARGS... |
| 724 | ** |
| 725 | ** > fossil bundle append BUNDLE FILE... |
| 726 | ** |
| 727 |
| --- src/bundle.c | |
| +++ src/bundle.c | |
| @@ -716,11 +716,11 @@ | |
| 716 | } |
| 717 | db_end_transaction(0); |
| 718 | } |
| 719 | |
| 720 | /* |
| 721 | ** COMMAND: bundle* |
| 722 | ** |
| 723 | ** Usage: %fossil bundle SUBCOMMAND ARGS... |
| 724 | ** |
| 725 | ** > fossil bundle append BUNDLE FILE... |
| 726 | ** |
| 727 |
+1
-1
| --- src/diff.c | ||
| +++ src/diff.c | ||
| @@ -2562,11 +2562,11 @@ | ||
| 2562 | 2562 | } |
| 2563 | 2563 | |
| 2564 | 2564 | /* |
| 2565 | 2565 | ** COMMAND: annotate |
| 2566 | 2566 | ** COMMAND: blame |
| 2567 | -** COMMAND: praise | |
| 2567 | +** COMMAND: praise* | |
| 2568 | 2568 | ** |
| 2569 | 2569 | ** Usage: %fossil annotate|blame|praise ?OPTIONS? FILENAME |
| 2570 | 2570 | ** |
| 2571 | 2571 | ** Output the text of a file with markings to show when each line of the file |
| 2572 | 2572 | ** was last modified. The version currently checked out is shown by default. |
| 2573 | 2573 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -2562,11 +2562,11 @@ | |
| 2562 | } |
| 2563 | |
| 2564 | /* |
| 2565 | ** COMMAND: annotate |
| 2566 | ** COMMAND: blame |
| 2567 | ** COMMAND: praise |
| 2568 | ** |
| 2569 | ** Usage: %fossil annotate|blame|praise ?OPTIONS? FILENAME |
| 2570 | ** |
| 2571 | ** Output the text of a file with markings to show when each line of the file |
| 2572 | ** was last modified. The version currently checked out is shown by default. |
| 2573 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -2562,11 +2562,11 @@ | |
| 2562 | } |
| 2563 | |
| 2564 | /* |
| 2565 | ** COMMAND: annotate |
| 2566 | ** COMMAND: blame |
| 2567 | ** COMMAND: praise* |
| 2568 | ** |
| 2569 | ** Usage: %fossil annotate|blame|praise ?OPTIONS? FILENAME |
| 2570 | ** |
| 2571 | ** Output the text of a file with markings to show when each line of the file |
| 2572 | ** was last modified. The version currently checked out is shown by default. |
| 2573 |
+4
-3
| --- src/dispatch.c | ||
| +++ src/dispatch.c | ||
| @@ -965,11 +965,11 @@ | ||
| 965 | 965 | ** setting. Webpage names begin with "/". If TOPIC is omitted, a list of |
| 966 | 966 | ** topics is returned. |
| 967 | 967 | ** |
| 968 | 968 | ** The following options can be used when TOPIC is omitted: |
| 969 | 969 | ** |
| 970 | -** -a|--all List both command and auxiliary commands | |
| 970 | +** -a|--all List both common and auxiliary commands | |
| 971 | 971 | ** -o|--options List command-line options common to all commands |
| 972 | 972 | ** -s|--setting List setting names |
| 973 | 973 | ** -t|--test List unsupported "test" commands |
| 974 | 974 | ** -x|--aux List only auxiliary commands |
| 975 | 975 | ** -w|--www List all web pages |
| @@ -988,12 +988,13 @@ | ||
| 988 | 988 | Blob txt; |
| 989 | 989 | if( g.argc<3 ){ |
| 990 | 990 | z = g.argv[0]; |
| 991 | 991 | fossil_print( |
| 992 | 992 | "Usage: %s help TOPIC\n" |
| 993 | - "Common commands: (use \"%s help help\" for more options)\n", | |
| 994 | - z, z); | |
| 993 | + "Try \"%s help help\" or \"%s help -a\" for more options\n" | |
| 994 | + "Frequently used commands:\n", | |
| 995 | + z, z, z); | |
| 995 | 996 | command_list(0, CMDFLAG_1ST_TIER); |
| 996 | 997 | version_cmd(); |
| 997 | 998 | return; |
| 998 | 999 | } |
| 999 | 1000 | if( find_option("options","o",0) ){ |
| 1000 | 1001 |
| --- src/dispatch.c | |
| +++ src/dispatch.c | |
| @@ -965,11 +965,11 @@ | |
| 965 | ** setting. Webpage names begin with "/". If TOPIC is omitted, a list of |
| 966 | ** topics is returned. |
| 967 | ** |
| 968 | ** The following options can be used when TOPIC is omitted: |
| 969 | ** |
| 970 | ** -a|--all List both command and auxiliary commands |
| 971 | ** -o|--options List command-line options common to all commands |
| 972 | ** -s|--setting List setting names |
| 973 | ** -t|--test List unsupported "test" commands |
| 974 | ** -x|--aux List only auxiliary commands |
| 975 | ** -w|--www List all web pages |
| @@ -988,12 +988,13 @@ | |
| 988 | Blob txt; |
| 989 | if( g.argc<3 ){ |
| 990 | z = g.argv[0]; |
| 991 | fossil_print( |
| 992 | "Usage: %s help TOPIC\n" |
| 993 | "Common commands: (use \"%s help help\" for more options)\n", |
| 994 | z, z); |
| 995 | command_list(0, CMDFLAG_1ST_TIER); |
| 996 | version_cmd(); |
| 997 | return; |
| 998 | } |
| 999 | if( find_option("options","o",0) ){ |
| 1000 |
| --- src/dispatch.c | |
| +++ src/dispatch.c | |
| @@ -965,11 +965,11 @@ | |
| 965 | ** setting. Webpage names begin with "/". If TOPIC is omitted, a list of |
| 966 | ** topics is returned. |
| 967 | ** |
| 968 | ** The following options can be used when TOPIC is omitted: |
| 969 | ** |
| 970 | ** -a|--all List both common and auxiliary commands |
| 971 | ** -o|--options List command-line options common to all commands |
| 972 | ** -s|--setting List setting names |
| 973 | ** -t|--test List unsupported "test" commands |
| 974 | ** -x|--aux List only auxiliary commands |
| 975 | ** -w|--www List all web pages |
| @@ -988,12 +988,13 @@ | |
| 988 | Blob txt; |
| 989 | if( g.argc<3 ){ |
| 990 | z = g.argv[0]; |
| 991 | fossil_print( |
| 992 | "Usage: %s help TOPIC\n" |
| 993 | "Try \"%s help help\" or \"%s help -a\" for more options\n" |
| 994 | "Frequently used commands:\n", |
| 995 | z, z, z); |
| 996 | command_list(0, CMDFLAG_1ST_TIER); |
| 997 | version_cmd(); |
| 998 | return; |
| 999 | } |
| 1000 | if( find_option("options","o",0) ){ |
| 1001 |
+1
-1
| --- src/export.c | ||
| +++ src/export.c | ||
| @@ -1642,11 +1642,11 @@ | ||
| 1642 | 1642 | k = db_int(0, "SELECT count(*) FROm mmark WHERE NOT isfile"); |
| 1643 | 1643 | fossil_print("Exported: %d check-ins and %d file blobs\n", k, n); |
| 1644 | 1644 | } |
| 1645 | 1645 | |
| 1646 | 1646 | /* |
| 1647 | -** COMMAND: git | |
| 1647 | +** COMMAND: git* | |
| 1648 | 1648 | ** |
| 1649 | 1649 | ** Usage: %fossil git SUBCOMMAND |
| 1650 | 1650 | ** |
| 1651 | 1651 | ** Do incremental import or export operations between Fossil and Git. |
| 1652 | 1652 | ** Subcommands: |
| 1653 | 1653 |
| --- src/export.c | |
| +++ src/export.c | |
| @@ -1642,11 +1642,11 @@ | |
| 1642 | k = db_int(0, "SELECT count(*) FROm mmark WHERE NOT isfile"); |
| 1643 | fossil_print("Exported: %d check-ins and %d file blobs\n", k, n); |
| 1644 | } |
| 1645 | |
| 1646 | /* |
| 1647 | ** COMMAND: git |
| 1648 | ** |
| 1649 | ** Usage: %fossil git SUBCOMMAND |
| 1650 | ** |
| 1651 | ** Do incremental import or export operations between Fossil and Git. |
| 1652 | ** Subcommands: |
| 1653 |
| --- src/export.c | |
| +++ src/export.c | |
| @@ -1642,11 +1642,11 @@ | |
| 1642 | k = db_int(0, "SELECT count(*) FROm mmark WHERE NOT isfile"); |
| 1643 | fossil_print("Exported: %d check-ins and %d file blobs\n", k, n); |
| 1644 | } |
| 1645 | |
| 1646 | /* |
| 1647 | ** COMMAND: git* |
| 1648 | ** |
| 1649 | ** Usage: %fossil git SUBCOMMAND |
| 1650 | ** |
| 1651 | ** Do incremental import or export operations between Fossil and Git. |
| 1652 | ** Subcommands: |
| 1653 |
+1
-1
| --- src/fusefs.c | ||
| +++ src/fusefs.c | ||
| @@ -285,11 +285,11 @@ | ||
| 285 | 285 | .readdir = fusefs_readdir, |
| 286 | 286 | .read = fusefs_read, |
| 287 | 287 | }; |
| 288 | 288 | |
| 289 | 289 | /* |
| 290 | -** COMMAND: fusefs | |
| 290 | +** COMMAND: fusefs* | |
| 291 | 291 | ** |
| 292 | 292 | ** Usage: %fossil fusefs [--debug] DIRECTORY |
| 293 | 293 | ** |
| 294 | 294 | ** This command uses the Fuse Filesystem (FuseFS) to mount a directory |
| 295 | 295 | ** at DIRECTORY that contains the content of all check-ins in the |
| 296 | 296 |
| --- src/fusefs.c | |
| +++ src/fusefs.c | |
| @@ -285,11 +285,11 @@ | |
| 285 | .readdir = fusefs_readdir, |
| 286 | .read = fusefs_read, |
| 287 | }; |
| 288 | |
| 289 | /* |
| 290 | ** COMMAND: fusefs |
| 291 | ** |
| 292 | ** Usage: %fossil fusefs [--debug] DIRECTORY |
| 293 | ** |
| 294 | ** This command uses the Fuse Filesystem (FuseFS) to mount a directory |
| 295 | ** at DIRECTORY that contains the content of all check-ins in the |
| 296 |
| --- src/fusefs.c | |
| +++ src/fusefs.c | |
| @@ -285,11 +285,11 @@ | |
| 285 | .readdir = fusefs_readdir, |
| 286 | .read = fusefs_read, |
| 287 | }; |
| 288 | |
| 289 | /* |
| 290 | ** COMMAND: fusefs* |
| 291 | ** |
| 292 | ** Usage: %fossil fusefs [--debug] DIRECTORY |
| 293 | ** |
| 294 | ** This command uses the Fuse Filesystem (FuseFS) to mount a directory |
| 295 | ** at DIRECTORY that contains the content of all check-ins in the |
| 296 |
+1
-1
| --- src/hook.c | ||
| +++ src/hook.c | ||
| @@ -174,11 +174,11 @@ | ||
| 174 | 174 | } |
| 175 | 175 | db_finalize(&q); |
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | /* |
| 179 | -** COMMAND: hook | |
| 179 | +** COMMAND: hook* | |
| 180 | 180 | ** |
| 181 | 181 | ** Usage: %fossil hook COMMAND ... |
| 182 | 182 | ** |
| 183 | 183 | ** Commands include: |
| 184 | 184 | ** |
| 185 | 185 |
| --- src/hook.c | |
| +++ src/hook.c | |
| @@ -174,11 +174,11 @@ | |
| 174 | } |
| 175 | db_finalize(&q); |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | ** COMMAND: hook |
| 180 | ** |
| 181 | ** Usage: %fossil hook COMMAND ... |
| 182 | ** |
| 183 | ** Commands include: |
| 184 | ** |
| 185 |
| --- src/hook.c | |
| +++ src/hook.c | |
| @@ -174,11 +174,11 @@ | |
| 174 | } |
| 175 | db_finalize(&q); |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | ** COMMAND: hook* |
| 180 | ** |
| 181 | ** Usage: %fossil hook COMMAND ... |
| 182 | ** |
| 183 | ** Commands include: |
| 184 | ** |
| 185 |
+1
-1
| --- src/import.c | ||
| +++ src/import.c | ||
| @@ -1594,11 +1594,11 @@ | ||
| 1594 | 1594 | db_finalize(&revSrc); |
| 1595 | 1595 | fossil_print(" Done!\n"); |
| 1596 | 1596 | } |
| 1597 | 1597 | |
| 1598 | 1598 | /* |
| 1599 | -** COMMAND: import | |
| 1599 | +** COMMAND: import* | |
| 1600 | 1600 | ** |
| 1601 | 1601 | ** Usage: %fossil import ?--git? ?OPTIONS? NEW-REPOSITORY ?INPUT-FILE? |
| 1602 | 1602 | ** or: %fossil import --svn ?OPTIONS? NEW-REPOSITORY ?INPUT-FILE? |
| 1603 | 1603 | ** |
| 1604 | 1604 | ** Read interchange format generated by another VCS and use it to |
| 1605 | 1605 |
| --- src/import.c | |
| +++ src/import.c | |
| @@ -1594,11 +1594,11 @@ | |
| 1594 | db_finalize(&revSrc); |
| 1595 | fossil_print(" Done!\n"); |
| 1596 | } |
| 1597 | |
| 1598 | /* |
| 1599 | ** COMMAND: import |
| 1600 | ** |
| 1601 | ** Usage: %fossil import ?--git? ?OPTIONS? NEW-REPOSITORY ?INPUT-FILE? |
| 1602 | ** or: %fossil import --svn ?OPTIONS? NEW-REPOSITORY ?INPUT-FILE? |
| 1603 | ** |
| 1604 | ** Read interchange format generated by another VCS and use it to |
| 1605 |
| --- src/import.c | |
| +++ src/import.c | |
| @@ -1594,11 +1594,11 @@ | |
| 1594 | db_finalize(&revSrc); |
| 1595 | fossil_print(" Done!\n"); |
| 1596 | } |
| 1597 | |
| 1598 | /* |
| 1599 | ** COMMAND: import* |
| 1600 | ** |
| 1601 | ** Usage: %fossil import ?--git? ?OPTIONS? NEW-REPOSITORY ?INPUT-FILE? |
| 1602 | ** or: %fossil import --svn ?OPTIONS? NEW-REPOSITORY ?INPUT-FILE? |
| 1603 | ** |
| 1604 | ** Read interchange format generated by another VCS and use it to |
| 1605 |
+2
-2
| --- src/publish.c | ||
| +++ src/publish.c | ||
| @@ -21,11 +21,11 @@ | ||
| 21 | 21 | #include "config.h" |
| 22 | 22 | #include "publish.h" |
| 23 | 23 | #include <assert.h> |
| 24 | 24 | |
| 25 | 25 | /* |
| 26 | -** COMMAND: unpublished | |
| 26 | +** COMMAND: unpublished* | |
| 27 | 27 | ** |
| 28 | 28 | ** Usage: %fossil unpublished ?OPTIONS? |
| 29 | 29 | ** |
| 30 | 30 | ** Show a list of unpublished or "private" artifacts. Unpublished artifacts |
| 31 | 31 | ** will never push and hence will not be shared with collaborators. |
| @@ -50,11 +50,11 @@ | ||
| 50 | 50 | " AND event.type='ci')", 0); |
| 51 | 51 | } |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | /* |
| 55 | -** COMMAND: publish | |
| 55 | +** COMMAND: publish* | |
| 56 | 56 | ** |
| 57 | 57 | ** Usage: %fossil publish ?--only? TAGS... |
| 58 | 58 | ** |
| 59 | 59 | ** Cause artifacts identified by TAGS... to be published (made non-private). |
| 60 | 60 | ** This can be used (for example) to convert a private branch into a public |
| 61 | 61 |
| --- src/publish.c | |
| +++ src/publish.c | |
| @@ -21,11 +21,11 @@ | |
| 21 | #include "config.h" |
| 22 | #include "publish.h" |
| 23 | #include <assert.h> |
| 24 | |
| 25 | /* |
| 26 | ** COMMAND: unpublished |
| 27 | ** |
| 28 | ** Usage: %fossil unpublished ?OPTIONS? |
| 29 | ** |
| 30 | ** Show a list of unpublished or "private" artifacts. Unpublished artifacts |
| 31 | ** will never push and hence will not be shared with collaborators. |
| @@ -50,11 +50,11 @@ | |
| 50 | " AND event.type='ci')", 0); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | /* |
| 55 | ** COMMAND: publish |
| 56 | ** |
| 57 | ** Usage: %fossil publish ?--only? TAGS... |
| 58 | ** |
| 59 | ** Cause artifacts identified by TAGS... to be published (made non-private). |
| 60 | ** This can be used (for example) to convert a private branch into a public |
| 61 |
| --- src/publish.c | |
| +++ src/publish.c | |
| @@ -21,11 +21,11 @@ | |
| 21 | #include "config.h" |
| 22 | #include "publish.h" |
| 23 | #include <assert.h> |
| 24 | |
| 25 | /* |
| 26 | ** COMMAND: unpublished* |
| 27 | ** |
| 28 | ** Usage: %fossil unpublished ?OPTIONS? |
| 29 | ** |
| 30 | ** Show a list of unpublished or "private" artifacts. Unpublished artifacts |
| 31 | ** will never push and hence will not be shared with collaborators. |
| @@ -50,11 +50,11 @@ | |
| 50 | " AND event.type='ci')", 0); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | /* |
| 55 | ** COMMAND: publish* |
| 56 | ** |
| 57 | ** Usage: %fossil publish ?--only? TAGS... |
| 58 | ** |
| 59 | ** Cause artifacts identified by TAGS... to be published (made non-private). |
| 60 | ** This can be used (for example) to convert a private branch into a public |
| 61 |
+6
-4
| --- src/stat.c | ||
| +++ src/stat.c | ||
| @@ -292,11 +292,11 @@ | ||
| 292 | 292 | @ </table> |
| 293 | 293 | style_footer(); |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | /* |
| 297 | -** COMMAND: dbstat* | |
| 297 | +** COMMAND: dbstat | |
| 298 | 298 | ** |
| 299 | 299 | ** Usage: %fossil dbstat OPTIONS |
| 300 | 300 | ** |
| 301 | 301 | ** Shows statistics and global information about the repository. |
| 302 | 302 | ** |
| @@ -384,13 +384,15 @@ | ||
| 384 | 384 | } |
| 385 | 385 | n = db_int(0, "SELECT julianday('now') - (SELECT min(mtime) FROM event)" |
| 386 | 386 | " + 0.99"); |
| 387 | 387 | fossil_print("%*s%,d days or approximately %.2f years.\n", |
| 388 | 388 | colWidth, "project-age:", n, n/365.2425); |
| 389 | - p = db_get("project-code", 0); | |
| 390 | - if( p ){ | |
| 391 | - fossil_print("%*s%s\n", colWidth, "project-id:", p); | |
| 389 | + if( !brief ){ | |
| 390 | + p = db_get("project-code", 0); | |
| 391 | + if( p ){ | |
| 392 | + fossil_print("%*s%s\n", colWidth, "project-id:", p); | |
| 393 | + } | |
| 392 | 394 | } |
| 393 | 395 | #if 0 |
| 394 | 396 | /* Server-id is not useful information any more */ |
| 395 | 397 | fossil_print("%*s%s\n", colWidth, "server-id:", db_get("server-code", 0)); |
| 396 | 398 | #endif |
| 397 | 399 |
| --- src/stat.c | |
| +++ src/stat.c | |
| @@ -292,11 +292,11 @@ | |
| 292 | @ </table> |
| 293 | style_footer(); |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | ** COMMAND: dbstat* |
| 298 | ** |
| 299 | ** Usage: %fossil dbstat OPTIONS |
| 300 | ** |
| 301 | ** Shows statistics and global information about the repository. |
| 302 | ** |
| @@ -384,13 +384,15 @@ | |
| 384 | } |
| 385 | n = db_int(0, "SELECT julianday('now') - (SELECT min(mtime) FROM event)" |
| 386 | " + 0.99"); |
| 387 | fossil_print("%*s%,d days or approximately %.2f years.\n", |
| 388 | colWidth, "project-age:", n, n/365.2425); |
| 389 | p = db_get("project-code", 0); |
| 390 | if( p ){ |
| 391 | fossil_print("%*s%s\n", colWidth, "project-id:", p); |
| 392 | } |
| 393 | #if 0 |
| 394 | /* Server-id is not useful information any more */ |
| 395 | fossil_print("%*s%s\n", colWidth, "server-id:", db_get("server-code", 0)); |
| 396 | #endif |
| 397 |
| --- src/stat.c | |
| +++ src/stat.c | |
| @@ -292,11 +292,11 @@ | |
| 292 | @ </table> |
| 293 | style_footer(); |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | ** COMMAND: dbstat |
| 298 | ** |
| 299 | ** Usage: %fossil dbstat OPTIONS |
| 300 | ** |
| 301 | ** Shows statistics and global information about the repository. |
| 302 | ** |
| @@ -384,13 +384,15 @@ | |
| 384 | } |
| 385 | n = db_int(0, "SELECT julianday('now') - (SELECT min(mtime) FROM event)" |
| 386 | " + 0.99"); |
| 387 | fossil_print("%*s%,d days or approximately %.2f years.\n", |
| 388 | colWidth, "project-age:", n, n/365.2425); |
| 389 | if( !brief ){ |
| 390 | p = db_get("project-code", 0); |
| 391 | if( p ){ |
| 392 | fossil_print("%*s%s\n", colWidth, "project-id:", p); |
| 393 | } |
| 394 | } |
| 395 | #if 0 |
| 396 | /* Server-id is not useful information any more */ |
| 397 | fossil_print("%*s%s\n", colWidth, "server-id:", db_get("server-code", 0)); |
| 398 | #endif |
| 399 |
+2
-1
| --- src/sync.c | ||
| +++ src/sync.c | ||
| @@ -345,11 +345,12 @@ | ||
| 345 | 345 | verify_all_options(); |
| 346 | 346 | client_sync(syncFlags, 0, 0, 0); |
| 347 | 347 | } |
| 348 | 348 | |
| 349 | 349 | /* |
| 350 | -** COMMAND: remote-url | |
| 350 | +** COMMAND: remote | |
| 351 | +** COMMAND: remote-url* | |
| 351 | 352 | ** |
| 352 | 353 | ** Usage: %fossil remote ?SUBCOMMAND ...? |
| 353 | 354 | ** |
| 354 | 355 | ** Use this command to view or modify the set of remote repositories |
| 355 | 356 | ** used as the default target for sync, push, and pull and for autosync. |
| 356 | 357 |
| --- src/sync.c | |
| +++ src/sync.c | |
| @@ -345,11 +345,12 @@ | |
| 345 | verify_all_options(); |
| 346 | client_sync(syncFlags, 0, 0, 0); |
| 347 | } |
| 348 | |
| 349 | /* |
| 350 | ** COMMAND: remote-url |
| 351 | ** |
| 352 | ** Usage: %fossil remote ?SUBCOMMAND ...? |
| 353 | ** |
| 354 | ** Use this command to view or modify the set of remote repositories |
| 355 | ** used as the default target for sync, push, and pull and for autosync. |
| 356 |
| --- src/sync.c | |
| +++ src/sync.c | |
| @@ -345,11 +345,12 @@ | |
| 345 | verify_all_options(); |
| 346 | client_sync(syncFlags, 0, 0, 0); |
| 347 | } |
| 348 | |
| 349 | /* |
| 350 | ** COMMAND: remote |
| 351 | ** COMMAND: remote-url* |
| 352 | ** |
| 353 | ** Usage: %fossil remote ?SUBCOMMAND ...? |
| 354 | ** |
| 355 | ** Use this command to view or modify the set of remote repositories |
| 356 | ** used as the default target for sync, push, and pull and for autosync. |
| 357 |