Although I have used svn exclusively via the command line in the past, I'm really enjoying the convenience of the svn bundle -- especially when working within a project. I did, however, notice one minor problem which might be a bug. Say I have the following (invisible) directory named .foo:
vampire-squid:~/Desktop/.foo pschumm$ svn status ? my-new-file M foobar.tex
(note the period in the directory name, and the new file still unknown to svn). If I open the file foobar.tex in TextMate and use the status command from the svn bundle, the resulting output shows only the modified file (i.e., the new file does not appear in the output). However, if I remove the . from the directory name (i.e., change it from .foo to foo), then the output of the status command shows both files (i.e., it is consistent with the output of "svn status"). Thus, it would appear that when a period appears in the path, new files are not shown in the status output.
This situation can arise if, say, you keep personal settings folders (which often start with a period) under version control.
-- Phil
On 1 Nov 2007, at 21:38, Phil Schumm wrote:
[...] one minor problem which might be a bug. Say I have the following (invisible) directory named .foo: [...]
Things reported as “unknown” (by svn) would be ignored if _any_ of the path components started with a period. I have changed it so that _last_ path component has to start with a period, for us to not show it as “new”.
So this will work from next build (or from now if you use svn checked out bundles).
Sorry about the delay in addressing this.
On Dec 6, 2007, at 12:27 AM, Allan Odgaard wrote:
On 1 Nov 2007, at 21:38, Phil Schumm wrote:
[...] one minor problem which might be a bug. Say I have the following (invisible) directory named .foo: [...]
Things reported as “unknown” (by svn) would be ignored if _any_ of the path components started with a period. I have changed it so that _last_ path component has to start with a period, for us to not show it as “new”.
So this will work from next build (or from now if you use svn checked out bundles).
Sorry about the delay in addressing this.
Thank you very much Allan for fixing this.
-- Phil