[fossil-users] Locating the repo file for any given working directory

2015-08-21 Thread Arnel Legaspi
Hello, The current way I've been using to get the location of the current working directory's '.fossil' file is to open the _FOSSIL_ file inside the directory with the sqlite3 CLI app and run the following query: sqlite> select * from vvar where name = 'repository'; repository|../../fsl.

Re: [fossil-users] Locating the repo file for any given working directory

2015-08-21 Thread bch
$ fossil info On Aug 21, 2015 1:34 AM, "Arnel Legaspi" wrote: > Hello, > > The current way I've been using to get the location of the current > working directory's '.fossil' file is to open the _FOSSIL_ file inside > the directory with the sqlite3 CLI app and run the following query: > > sqli

[fossil-users] can not purge?

2015-08-21 Thread Sors
hi, perhaps i am misunderstanding the purge command, i am trying to purge a single checkin of the curren branch. it isn't the current checked out revision still i get the error 'can not purge gurrent checkout'. to mark it for purging i add a tag to that single checkout (which isn't propagated to d

Re: [fossil-users] Locating the repo file for any given working directory

2015-08-21 Thread Stephan Beal
On Fri, Aug 21, 2015 at 10:34 AM, Arnel Legaspi wrote: > Is there a better way to get this information through the CLI commands > already available? An absolute path would be preferred (similar to > the one given by 'fossil all ls'), but if not, it's fine. > As Brad said, 'info', but you also mi

Re: [fossil-users] can not purge?

2015-08-21 Thread Sors
just saw the problem: purge help: Move the check-ins identified by TAGS *and all of their descendants...* 2015-08-21 10:42 GMT+02:00 Sors : > hi, > > perhaps i am misunderstanding the purge command, i am trying to purge a > single checkin of the curren branch. it isn't the current checked out >

[fossil-users] Files shared (and updated) between repos?

2015-08-21 Thread Johan Kuuse
Hi, Everytime I create a new repos, I use a few files which I would like to have access to in all my repos: - README.fossil.new.repo : My own notes about how to setup a new repo. - setup-fossil.sh : A script how to setup a new repo automatically. - fossil-config.txt: A common configure file I wou

Re: [fossil-users] Files shared (and updated) between repos?

2015-08-21 Thread Martin Gagnon
On Fri, Aug 21, 2015 at 12:02:46PM +0200, Johan Kuuse wrote: > Hi, > > Everytime I create a new repos, I use a few files which I would like > to have access to in all my repos: > > - README.fossil.new.repo : My own notes about how to setup a new repo. > - setup-fossil.sh : A script how to setup a

Re: [fossil-users] Files shared (and updated) between repos?

2015-08-21 Thread David Mason
On 21 August 2015 at 07:33, Martin Gagnon wrote: > - Links in home page on each of your repos: > - Open nested repository: I do the nested one a lot (I have a Courses repo with common stuff for all the courses I teach, and a nested repo underneath for each course). The 3rd choice is a symbolic

Re: [fossil-users] Files shared (and updated) between repos?

2015-08-21 Thread Johan Kuuse
Thanks for all the suggestions. I use fossil on different platforms, including Windows, so symlinking is not an option. I will try David Mason's "Courses layout", using my common files (what I called the "shared repo") in a fossil repo, and all my other projects as --nested "sub-repos", that seems

Re: [fossil-users] can not purge?

2015-08-21 Thread Andy Bradford
Thus said Sors on Fri, 21 Aug 2015 10:42:00 +0200: > perhaps i am misunderstanding the purge command, i am trying to purge > a single checkin of the curren branch. I could be mistaken, but I think the purge command is intended to be used with a bundle, and not a checkout in an existing repo

Re: [fossil-users] can not purge?

2015-08-21 Thread Ron W
On Fri, Aug 21, 2015 at 4:42 PM, Andy Bradford wrote: > > I could be mistaken, but I think the purge command is intended to be > used with a bundle, and not a checkout in an existing repository, but I > could be wrong. > Yes, purge is meant for "unimporting" a bundle. __