Fossil SCM
All the --verbose option on "all sync", "all push", and "all pull".
Commit
4ee99cc8a6c27647c60738721e444e29853fe25d
Parent
5ed566f805daa21…
1 file changed
+3
+3
| --- src/allrepo.c | ||
| +++ src/allrepo.c | ||
| @@ -132,12 +132,14 @@ | ||
| 132 | 132 | if( strncmp(zCmd, "list", n)==0 || strncmp(zCmd,"ls",n)==0 ){ |
| 133 | 133 | zCmd = "list"; |
| 134 | 134 | useCheckouts = find_option("ckout","c",0)!=0; |
| 135 | 135 | }else if( strncmp(zCmd, "push", n)==0 ){ |
| 136 | 136 | zCmd = "push -autourl -R"; |
| 137 | + collect_argument(&extra, "verbose"); | |
| 137 | 138 | }else if( strncmp(zCmd, "pull", n)==0 ){ |
| 138 | 139 | zCmd = "pull -autourl -R"; |
| 140 | + collect_argument(&extra, "verbose"); | |
| 139 | 141 | }else if( strncmp(zCmd, "rebuild", n)==0 ){ |
| 140 | 142 | zCmd = "rebuild"; |
| 141 | 143 | collect_argument(&extra, "cluster"); |
| 142 | 144 | collect_argument(&extra, "compress"); |
| 143 | 145 | collect_argument(&extra, "noverify"); |
| @@ -146,10 +148,11 @@ | ||
| 146 | 148 | collect_argument(&extra, "deanalyze"); |
| 147 | 149 | collect_argument(&extra, "wal"); |
| 148 | 150 | collect_argument(&extra, "stat"); |
| 149 | 151 | }else if( strncmp(zCmd, "sync", n)==0 ){ |
| 150 | 152 | zCmd = "sync -autourl -R"; |
| 153 | + collect_argument(&extra, "verbose"); | |
| 151 | 154 | }else if( strncmp(zCmd, "test-integrity", n)==0 ){ |
| 152 | 155 | zCmd = "test-integrity"; |
| 153 | 156 | }else if( strncmp(zCmd, "test-orphans", n)==0 ){ |
| 154 | 157 | zCmd = "test-orphans -R"; |
| 155 | 158 | }else if( strncmp(zCmd, "test-missing", n)==0 ){ |
| 156 | 159 |
| --- src/allrepo.c | |
| +++ src/allrepo.c | |
| @@ -132,12 +132,14 @@ | |
| 132 | if( strncmp(zCmd, "list", n)==0 || strncmp(zCmd,"ls",n)==0 ){ |
| 133 | zCmd = "list"; |
| 134 | useCheckouts = find_option("ckout","c",0)!=0; |
| 135 | }else if( strncmp(zCmd, "push", n)==0 ){ |
| 136 | zCmd = "push -autourl -R"; |
| 137 | }else if( strncmp(zCmd, "pull", n)==0 ){ |
| 138 | zCmd = "pull -autourl -R"; |
| 139 | }else if( strncmp(zCmd, "rebuild", n)==0 ){ |
| 140 | zCmd = "rebuild"; |
| 141 | collect_argument(&extra, "cluster"); |
| 142 | collect_argument(&extra, "compress"); |
| 143 | collect_argument(&extra, "noverify"); |
| @@ -146,10 +148,11 @@ | |
| 146 | collect_argument(&extra, "deanalyze"); |
| 147 | collect_argument(&extra, "wal"); |
| 148 | collect_argument(&extra, "stat"); |
| 149 | }else if( strncmp(zCmd, "sync", n)==0 ){ |
| 150 | zCmd = "sync -autourl -R"; |
| 151 | }else if( strncmp(zCmd, "test-integrity", n)==0 ){ |
| 152 | zCmd = "test-integrity"; |
| 153 | }else if( strncmp(zCmd, "test-orphans", n)==0 ){ |
| 154 | zCmd = "test-orphans -R"; |
| 155 | }else if( strncmp(zCmd, "test-missing", n)==0 ){ |
| 156 |
| --- src/allrepo.c | |
| +++ src/allrepo.c | |
| @@ -132,12 +132,14 @@ | |
| 132 | if( strncmp(zCmd, "list", n)==0 || strncmp(zCmd,"ls",n)==0 ){ |
| 133 | zCmd = "list"; |
| 134 | useCheckouts = find_option("ckout","c",0)!=0; |
| 135 | }else if( strncmp(zCmd, "push", n)==0 ){ |
| 136 | zCmd = "push -autourl -R"; |
| 137 | collect_argument(&extra, "verbose"); |
| 138 | }else if( strncmp(zCmd, "pull", n)==0 ){ |
| 139 | zCmd = "pull -autourl -R"; |
| 140 | collect_argument(&extra, "verbose"); |
| 141 | }else if( strncmp(zCmd, "rebuild", n)==0 ){ |
| 142 | zCmd = "rebuild"; |
| 143 | collect_argument(&extra, "cluster"); |
| 144 | collect_argument(&extra, "compress"); |
| 145 | collect_argument(&extra, "noverify"); |
| @@ -146,10 +148,11 @@ | |
| 148 | collect_argument(&extra, "deanalyze"); |
| 149 | collect_argument(&extra, "wal"); |
| 150 | collect_argument(&extra, "stat"); |
| 151 | }else if( strncmp(zCmd, "sync", n)==0 ){ |
| 152 | zCmd = "sync -autourl -R"; |
| 153 | collect_argument(&extra, "verbose"); |
| 154 | }else if( strncmp(zCmd, "test-integrity", n)==0 ){ |
| 155 | zCmd = "test-integrity"; |
| 156 | }else if( strncmp(zCmd, "test-orphans", n)==0 ){ |
| 157 | zCmd = "test-orphans -R"; |
| 158 | }else if( strncmp(zCmd, "test-missing", n)==0 ){ |
| 159 |