Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch bch Excluding Merge-Ins
This is equivalent to a diff from f73ed21d3b to 0eaf7528b1
2011-02-17
| ||
00:05 | Merge in Brad Harder's "stash ls" command. check-in: ae73c07be0 user: drh tags: trunk | |
2011-02-16
| ||
23:47 | Update to the latest pre-release SQLite version (as part of the SQLite testing process). Update the makefiles to use SQLITE_ENABLE_STAT2. check-in: c616cef3f7 user: drh tags: trunk | |
22:55 | merge trunk Closed-Leaf check-in: 0eaf7528b1 user: bharder tags: bch | |
19:19 | Always close opendir() objects if and only if successfully opened. Ticket [d7169e51ebb3400f6] check-in: f73ed21d3b user: drh tags: trunk | |
19:13 | For the ssh: transport method, use the -T option to disable pseudottys. Increase the size of the buffer for holding the MOTD. check-in: 7c8519003d user: drh tags: trunk | |
2011-02-15
| ||
05:19 | "stash ls", in addition to "stash list" check-in: 9abf05437b user: bharder tags: bch | |
Changes to src/stash.c.
315 315 ** Save the current changes in the working tree as a new stash. 316 316 ** Then revert the changes back to the last check-in. If FILES 317 317 ** are listed, then only stash and revert the named files. The 318 318 ** "save" verb can be omitted if and only if there are no other 319 319 ** arguments. 320 320 ** 321 321 ** fossil stash list 322 +** fossil stash ls 322 323 ** 323 324 ** List all changes sets currently stashed. 324 325 ** 325 326 ** fossil stash pop 326 327 ** 327 328 ** Apply the most recently create stash to the current working 328 329 ** check-out. Then delete that stash. This is equivalent to ................................................................................ 396 397 } 397 398 g.argv[1] = "revert"; 398 399 revert_cmd(); 399 400 }else 400 401 if( memcmp(zCmd, "snapshot", nCmd)==0 ){ 401 402 stash_create(); 402 403 }else 403 - if( memcmp(zCmd, "list", nCmd)==0 ){ 404 + if( (memcmp(zCmd, "list", nCmd)==0)||((memcmp(zCmd, "ls", nCmd)==0) )){ 404 405 Stmt q; 405 406 int n = 0; 406 407 verify_all_options(); 407 408 db_prepare(&q, 408 409 "SELECT stashid, (SELECT uuid FROM blob WHERE rid=vid)," 409 410 " comment, datetime(ctime) FROM stash" 410 411 " ORDER BY ctime DESC"