Differences From Artifact [714d3b3c0e]:
- File src/checkout.c — part of check-in [9a2c75fc1c] at 2016-01-03 20:58:53 on branch jan-manifest-tags — Started work on allowing manifest.tags to automatically be created containing the checkout's tags. Repurposed the manifest setting slightly allowing manifest and manifest.uuid to be toggled individually, but keeping backwards compatibility. (user: jan size: 10959)
To Artifact [73f8b6d9af]:
- File src/checkout.c — part of check-in [6a56db89f6] at 2016-01-04 00:19:00 on branch jan-manifest-tags — Added a missing finalize. (user: jan size: 10981)
| ︙ | |||
199 200 201 202 203 204 205 206 207 208 209 210 211 212 | 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | + |
" AND tag.tagname GLOB 'sym-*'", rid);
while( db_step(&stmt)==SQLITE_ROW ){
const char *zName;
zName = db_column_text(&stmt, 0);
blob_appendf(pOut, "%s\n", zName);
}
db_reset(&stmt);
db_finalize(&stmt);
}
/*
** COMMAND: checkout*
** COMMAND: co*
**
|
| ︙ |