RE: which version control supports file locking and who has it locked

2016-06-06 Thread Ræstad Atle Eivind
> Andreas: > > On Mon, Jun 6, 2016 at 3:50 AM, Andreas Stieger > wrote: > > or knowing who is actually working on a file. > > Incorrect, this is shown in both TortoiseSVN and svn cli. > > To be more precise, you can know who, in the past, has made changes to files > and > checked those change

RE: List commits for specific user & date range

2015-06-24 Thread Ræstad Atle Eivind
TortoiseSVN has a Log browser where you can filter what you want to see. /Atle From: Justin Taylor [mailto:jus...@lorencook.com] Sent: 24. juni 2015 23:13 To: users@subversion.apache.org Subject: List commits for specific user & date range Is there some tool or option that will allow me to view

RE: Is there a non-interactive way to do a "your version first, then theirs" merge?

2014-04-01 Thread Ræstad Atle Eivind
> In the meantime, can you think of any workaround ... As a workaround you might use Expect (http://en.wikipedia.org/wiki/Expect) in your script. /Atle

RE: Disjoint working copy

2014-01-31 Thread Ræstad Atle Eivind
> Is there a way to get full status information for a disjoint working copy > without performing "svn st" on each sub working copies? A workaround on Linux with svn client 1.7 or newer is to use a command similar to: find . -type d -name "\.svn" | sed 's/\.svn$//' | xargs svn st Then at least

Disjoint working copy

2014-01-21 Thread Ræstad Atle Eivind
Hi Is there a way to get full status information for a disjoint working copy without performing "svn st" on each sub working copies? And without the use of external definition? Example: setenv p `pwd` svnadmin create r svn -m "" mkdir file:///$p/r/common file:///$p/r/common/module1 file:///$p/