Index: src/stash.c ================================================================== --- src/stash.c +++ src/stash.c @@ -317,10 +317,11 @@ ** are listed, then only stash and revert the named files. The ** "save" verb can be omitted if and only if there are no other ** arguments. ** ** fossil stash list +** fossil stash ls ** ** List all changes sets currently stashed. ** ** fossil stash pop ** @@ -398,11 +399,11 @@ revert_cmd(); }else if( memcmp(zCmd, "snapshot", nCmd)==0 ){ stash_create(); }else - if( memcmp(zCmd, "list", nCmd)==0 ){ + if( (memcmp(zCmd, "list", nCmd)==0)||((memcmp(zCmd, "ls", nCmd)==0) )){ Stmt q; int n = 0; verify_all_options(); db_prepare(&q, "SELECT stashid, (SELECT uuid FROM blob WHERE rid=vid),"