why my process open .svn/tmp/svn-XXXXXX file? and why are tmp files deleted? and why my process can't open the right file after tmp files deleted?

2017-12-21 Thread Keva-Slient
we use svn managing our config files. we lock config file when do committing or writing operation. in client side, only commit operation executes. and svndump in server. our process is always opening file like repo/someconfig/files . it's strang process opened tmp file like repo/.svn/tmp/svn-X

Re: svnlook tree seems to disregard revision...

2017-12-21 Thread Johan Corveleyn
On Fri, Dec 22, 2017 at 12:34 AM, Bo Berglund wrote: > I am trying to understand how to use svnlook so I am testing it on the > command line on my Win7 PC. > Look at this: > > D:\>C:\Programs\Subversion\svnlook tree -r 773 D:\SVN\bosse > XMLTV/trunk/ --show-ids --full-paths > XMLTV/trunk/ <5-729.0

svnlook tree seems to disregard revision...

2017-12-21 Thread Bo Berglund
I am trying to understand how to use svnlook so I am testing it on the command line on my Win7 PC. Look at this: D:\>C:\Programs\Subversion\svnlook tree -r 773 D:\SVN\bosse XMLTV/trunk/ --show-ids --full-paths XMLTV/trunk/ <5-729.0.r773/27> XMLTV/trunk/ConfigXMLTV2Mei.dof <2-735.0.r766/31> XMLTV/t

Re: Deduce the server URL from the current directory inside the working copy

2017-12-21 Thread Anton Shepelev
I wrote to Daniel Widenfalk: >>>I find it mildly annoying to type the full path >>>within a repository for server-side file opera- >>>tions, such as 'delete' and 'copy'. Observe >>>that, being on Windows, I must use quotes in or- >>>der to escape the caret character: >>> >>> svn rm "^

Re: Deduce the server URL from the current directory inside the working copy

2017-12-21 Thread Bo Berglund
On Thu, 21 Dec 2017 14:14:23 +0100, Branko ?ibej wrote: >> doesn't this work: >> cd Work/A/B/C >> svn rm file.txt >> >That is a local operation and you have to 'svn commit' to make it >visible in the repository. > >What the OP describes is an operation that directly affects the >repository, not

Re: Deduce the server URL from the current directory inside the working copy

2017-12-21 Thread Anton Shepelev
Daniel Widenfalk to Anton Shepelev: >>I find it mildly annoying to type the full path >>within a repository for server-side file opera- >>tions, such as 'delete' and 'copy'. Observe that, >>being on Windows, I must use quotes in order to >>escape the caret character: >> >> svn rm "^/A/

Re: Deduce the server URL from the current directory inside the working copy

2017-12-21 Thread Daniel Widenfalk
On 2017-12-21 12:57, Anton Shepelev wrote: > Hello, all > > I find it mildly annoying to type the full path > within a repository for server-side file operations, > such as 'delete' and 'copy'. Observe that, being on > Windows, I must use quotes in order to escape the > caret character: >

Re: Deduce the server URL from the current directory inside the working copy

2017-12-21 Thread Branko Čibej
On 21.12.2017 13:40, Bo Berglund wrote: > On Thu, 21 Dec 2017 14:57:34 +0300, Anton Shepelev > wrote: > >> I could: >> >> cd Work/A/B/C >> svn rm "^^file.txt" >> > doesn't this work: > cd Work/A/B/C > svn rm file.txt > > I am completely new to svn and I have no place to test this, but it > see

Re: Deduce the server URL from the current directory inside the working copy

2017-12-21 Thread Bo Berglund
On Thu, 21 Dec 2017 14:57:34 +0300, Anton Shepelev wrote: >I could: > > cd Work/A/B/C > svn rm "^^file.txt" > doesn't this work: cd Work/A/B/C svn rm file.txt I am completely new to svn and I have no place to test this, but it seems natural to do it like this sive subversion surely knows wh

Deduce the server URL from the current directory inside the working copy

2017-12-21 Thread Anton Shepelev
Hello, all I find it mildly annoying to type the full path within a repository for server-side file operations, such as 'delete' and 'copy'. Observe that, being on Windows, I must use quotes in order to escape the caret character: svn rm "^/A/B/C/file.txt" Is there a way to avoid t

RE: when will file ./svn/tmp/svn-XXXXXX be created? and why?

2017-12-21 Thread Bert Huijben
In many cases Subversion will create files there, then write its contents and when done move the file to the required location in your working copy. This makes sure that you will never see half written files during operations… and by that loose valuable information. Bert Fr

when will file ./svn/tmp/svn-XXXXXX be created? and why?

2017-12-21 Thread Keva-Slient
we use svn managing our config files. in client side environment, check out repos in client side, processes could open the config file and read or write the config file. some of them could keep file handler for a long time. now we get some problems: the config file will be moved to .svn/tmp