Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change 'checkin-count' to simply 'checkins' to keep the output aligned. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d59455e3f218de2f5d3084aef527d35a |
| User & Date: | mistachkin 2013-01-17 03:30:14.542 |
Context
|
2013-01-17
| ||
| 11:02 | src/merge.c: In function ‘merge_cmd’: src/merge.c:103:7: warning: ‘mid’ may be used uninitialized in this function ... (check-in: 39fa6911fc user: jan.nijtmans tags: trunk) | |
| 03:30 | Change 'checkin-count' to simply 'checkins' to keep the output aligned. ... (check-in: d59455e3f2 user: mistachkin tags: trunk) | |
|
2013-01-15
| ||
| 19:15 | Moved the "dbstat" command into the "--all" list. ... (check-in: 2f04cc5e54 user: stephan tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
206 207 208 209 210 211 212 |
}
#endif
fossil_print("project-code: %s\n", db_get("project-code", ""));
vid = g.localOpen ? db_lget_int("checkout", 0) : 0;
if( vid ){
show_common_info(vid, "checkout:", 1, 1);
}
| | | 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
}
#endif
fossil_print("project-code: %s\n", db_get("project-code", ""));
vid = g.localOpen ? db_lget_int("checkout", 0) : 0;
if( vid ){
show_common_info(vid, "checkout:", 1, 1);
}
fossil_print("checkins: %d\n",
db_int(-1, "SELECT count(distinct mid) FROM mlink /*scan*/"));
}else{
int rid;
rid = name_to_rid(g.argv[2]);
if( rid==0 ){
fossil_panic("no such object: %s\n", g.argv[2]);
}
|
| ︙ | ︙ |