| # Pharos / Tags | |
| fossil clone https://chiselapp.com/user/bencollver/repository/pharos | |
| Timeline | |
| Files | |
| Branches | |
| (Tags) | |
| Tickets | |
| Wiki | |
| --- | |
| # Reference | |
| fossil sql --readonly | |
| SELECT substr(tag.tagname, 5) AS tagname, | |
| datetime(MAX(tagxref.mtime)) AS mtime FROM repository.tag JOIN | |
| repository.tagxref ON tagxref.tagid=tag.tagid WHERE | |
| tag.tagname LIKE 'sym-%%' AND tagxref.tagtype = 1 GROUP BY | |
| tag.tagid, tag.tagname ORDER BY MAX(tagxref.mtime) DESC |