Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | All the --verbose option on "all sync", "all push", and "all pull". |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 4ee99cc8a6c27647c60738721e444e29 |
User & Date: | drh 2012-11-29 20:23:31 |
Context
2012-11-30
| ||
00:38 | Update custom MinGW makefile with recent changes. check-in: 2d754ca8 user: mistachkin tags: trunk | |
2012-11-29
| ||
21:21 | merge trunk. Seems to work now. Still to be tested more. check-in: 49bdd78b user: jan.nijtmans tags: ticket-d17d6e5b17 | |
20:23 | All the --verbose option on "all sync", "all push", and "all pull". check-in: 4ee99cc8 user: drh tags: trunk | |
18:46 | Modify the test-echo command to also show the name of the executable. check-in: 5ed566f8 user: drh tags: trunk | |
Changes
Changes to src/allrepo.c.
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
blob_zero(&extra); zCmd = g.argv[2]; if( strncmp(zCmd, "list", n)==0 || strncmp(zCmd,"ls",n)==0 ){ zCmd = "list"; useCheckouts = find_option("ckout","c",0)!=0; }else if( strncmp(zCmd, "push", n)==0 ){ zCmd = "push -autourl -R"; }else if( strncmp(zCmd, "pull", n)==0 ){ zCmd = "pull -autourl -R"; }else if( strncmp(zCmd, "rebuild", n)==0 ){ zCmd = "rebuild"; collect_argument(&extra, "cluster"); collect_argument(&extra, "compress"); collect_argument(&extra, "noverify"); collect_argument_value(&extra, "pagesize"); collect_argument(&extra, "vacuum"); collect_argument(&extra, "deanalyze"); collect_argument(&extra, "wal"); collect_argument(&extra, "stat"); }else if( strncmp(zCmd, "sync", n)==0 ){ zCmd = "sync -autourl -R"; }else if( strncmp(zCmd, "test-integrity", n)==0 ){ zCmd = "test-integrity"; }else if( strncmp(zCmd, "test-orphans", n)==0 ){ zCmd = "test-orphans -R"; }else if( strncmp(zCmd, "test-missing", n)==0 ){ zCmd = "test-missing -q -R"; collect_argument(&extra, "notshunned"); |
> > > |
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
blob_zero(&extra); zCmd = g.argv[2]; if( strncmp(zCmd, "list", n)==0 || strncmp(zCmd,"ls",n)==0 ){ zCmd = "list"; useCheckouts = find_option("ckout","c",0)!=0; }else if( strncmp(zCmd, "push", n)==0 ){ zCmd = "push -autourl -R"; collect_argument(&extra, "verbose"); }else if( strncmp(zCmd, "pull", n)==0 ){ zCmd = "pull -autourl -R"; collect_argument(&extra, "verbose"); }else if( strncmp(zCmd, "rebuild", n)==0 ){ zCmd = "rebuild"; collect_argument(&extra, "cluster"); collect_argument(&extra, "compress"); collect_argument(&extra, "noverify"); collect_argument_value(&extra, "pagesize"); collect_argument(&extra, "vacuum"); collect_argument(&extra, "deanalyze"); collect_argument(&extra, "wal"); collect_argument(&extra, "stat"); }else if( strncmp(zCmd, "sync", n)==0 ){ zCmd = "sync -autourl -R"; collect_argument(&extra, "verbose"); }else if( strncmp(zCmd, "test-integrity", n)==0 ){ zCmd = "test-integrity"; }else if( strncmp(zCmd, "test-orphans", n)==0 ){ zCmd = "test-orphans -R"; }else if( strncmp(zCmd, "test-missing", n)==0 ){ zCmd = "test-missing -q -R"; collect_argument(&extra, "notshunned"); |