[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: can "svn ls" show tracked .dotfiles?

From: Ryan Schmidt <subversion-2008c_at_ryandesign.com>
Date: Sat, 8 Nov 2008 00:10:07 -0600

On Nov 7, 2008, at 13:43, Matteo Bertini wrote:

> I have some .dot files and I'd like to have them listed using:
>
> svn ls
>
> but I have found no way to have them listed...
>
> some hints?
>
> Thanks,
> Matteo Bertini
>
> PS
> they shows up correctly using:
>
> svn st -v

By ".dot files" do you mean files whose names begin with a dot? If
so, Subversion shouldn't handle them any differently from other
files. It should work fine, and did when I tried it right now
(Subversion 1.5.4, Mac OS X 10.4.11 Intel). Maybe your working copy
just isn't up to date? Try "svn up" first.

$ cd /tmp
$ svnadmin create repo
$ svn co file:///tmp/repo wc
Checked out revision 0.
$ cd wc
$ touch .foo
$ svn add .foo
A .foo
$ svn ci -m ""
Adding .foo
Transmitting file data .
Committed revision 1.
$ svn st -v
                 0 0 ? .
                 1 1 rschmidt .foo
$ svn ls
$ svn up
At revision 1.
$ svn ls
.foo
$

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-11-08 07:10:36 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.