RE: Listing excluded items

2010-11-04 Thread Giulio Troccoli
>I only just noticed the depth option 'exclude' (as it's
> not in the book yet, only the --help).  I had noticed
> TortoiseSVN gave it as an option, but had presumed that it
> was akin to the other situations where TSVN has renamed or
> extended the CLI functionality.
>
>I have even used it a couple of times, but in TSVN it
> seems especially ... well, not dangerous, but one-sided, in
> light of my question:
>
>
>On the command line, I can get back excluded items with a
> new --set-depth
> on the item (I don't know how you'd do that it TSVN as you
> can't select it).
>
>But you have to know it's (not) there.  Is there a way to see what
> excluded items are around (so I can tell what I might want to
> un-exclude)?
> It doesn't show up in diffs, status or anything I've tried yet.

Maybe you could try the ls command with a URL

svn ls http://url.to.repo/path/to/checkout/folder

Similarly if you use svn:// access


Linedata Limited
Registered Office: 85 Gracechurch St., London, EC3V 0AA
Registered in England and Wales No 3475006 VAT Reg No 710 3140 03






Re: Listing excluded items

2010-11-04 Thread Neil Bird

Around about 04/11/10 10:16, Giulio Troccoli typed ...

Maybe you could try the ls command with a URL


  Well, yes, if I 'ls' the repo I'm going to see what should be there.

  What I wanted to know was if there was any local indication;  something 
that would show me while I was offline.


--
[n...@fnx ~]# rm -f .signature
[n...@fnx ~]# ls -l .signature
ls: .signature: No such file or directory
[n...@fnx ~]# exit


Re: Listing excluded items

2010-11-04 Thread Daniel Shahaf
Neil Bird wrote on Thu, Nov 04, 2010 at 16:23:21 +:
> Around about 04/11/10 10:16, Giulio Troccoli typed ...
>> Maybe you could try the ls command with a URL
>
>   Well, yes, if I 'ls' the repo I'm going to see what should be there.
>
>   What I wanted to know was if there was any local indication;  something 
> that would show me while I was offline.

The 'entries' file should list them.  It should be possible to hack
together a quick parser if needed (e.g., gut the change-svn-wc-format.py
script).

For 1.7, it will be:
sqlite3 .svn/wc.db .dump | grep exclude
give or take.