I was failing at the clone command with a "not authorized to clone" error. I was going against http://www2.sqlite.org/cgi/src , since the download page indicated that as the closest one to me. When I go against http://www.sqlite.org/cgi/src , I can clone.
Thanks ________________________________ From: Stephan Beal <[email protected]> To: General Discussion of SQLite Database <[email protected]> Sent: Wednesday, March 27, 2013 10:18 AM Subject: Re: [sqlite] How do I get older versions of the sources? On Wed, Mar 27, 2013 at 3:15 PM, Wayne Bradney <[email protected]>wrote: > Might seem like a dumb questions, but I can figure it out.fossil clone > command gives me: Not authorized to cloneHitting the URL in the browser > gives me much info about cryptic tag ids but no apparent way to get to full > sources for an older version. > Help? > With the clone command you can only fetch ALL versions. You then need to "open" the repo and "checkout" ("co") the version (tag name) you want. Try: fossil clone http://www.sqlite.org/cgi/src sqlite3.fsl mkdir sqlite3 cd sqlite3 fossil open ../sqlite3.fsl fossil co VERSION_TAG_NAME_YOU_WANT (untested, but i think that'll do it) -- ----- stephan beal http://wanderinghorse.net/home/stephan/ http://gplus.to/sgbeal _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

