Fossil SCM
Change the undocumented --heavy option of sync/push/pull to "--verily".
Commit
f25bdf6e84498da6743024a18e1ab4ed0fcc4205
Parent
05ba15e448d7676…
1 file changed
+4
-1
+4
-1
| --- src/sync.c | ||
| +++ src/sync.c | ||
| @@ -94,11 +94,14 @@ | ||
| 94 | 94 | *pSyncFlags |= SYNC_PRIVATE; |
| 95 | 95 | } |
| 96 | 96 | if( find_option("verbose","v",0)!=0 ){ |
| 97 | 97 | *pSyncFlags |= SYNC_VERBOSE; |
| 98 | 98 | } |
| 99 | - if( find_option("heavy",0,0)!=0 ){ | |
| 99 | + /* The --verily option to sync, push, and pull forces extra igot cards | |
| 100 | + ** to be exchanged. This can overcome malfunctions in the sync protocol. | |
| 101 | + */ | |
| 102 | + if( find_option("verily",0,0)!=0 ){ | |
| 100 | 103 | *pSyncFlags |= SYNC_RESYNC; |
| 101 | 104 | } |
| 102 | 105 | url_proxy_options(); |
| 103 | 106 | db_find_and_open_repository(0, 0); |
| 104 | 107 | db_open_config(0); |
| 105 | 108 |
| --- src/sync.c | |
| +++ src/sync.c | |
| @@ -94,11 +94,14 @@ | |
| 94 | *pSyncFlags |= SYNC_PRIVATE; |
| 95 | } |
| 96 | if( find_option("verbose","v",0)!=0 ){ |
| 97 | *pSyncFlags |= SYNC_VERBOSE; |
| 98 | } |
| 99 | if( find_option("heavy",0,0)!=0 ){ |
| 100 | *pSyncFlags |= SYNC_RESYNC; |
| 101 | } |
| 102 | url_proxy_options(); |
| 103 | db_find_and_open_repository(0, 0); |
| 104 | db_open_config(0); |
| 105 |
| --- src/sync.c | |
| +++ src/sync.c | |
| @@ -94,11 +94,14 @@ | |
| 94 | *pSyncFlags |= SYNC_PRIVATE; |
| 95 | } |
| 96 | if( find_option("verbose","v",0)!=0 ){ |
| 97 | *pSyncFlags |= SYNC_VERBOSE; |
| 98 | } |
| 99 | /* The --verily option to sync, push, and pull forces extra igot cards |
| 100 | ** to be exchanged. This can overcome malfunctions in the sync protocol. |
| 101 | */ |
| 102 | if( find_option("verily",0,0)!=0 ){ |
| 103 | *pSyncFlags |= SYNC_RESYNC; |
| 104 | } |
| 105 | url_proxy_options(); |
| 106 | db_find_and_open_repository(0, 0); |
| 107 | db_open_config(0); |
| 108 |