Re: Subversion 1.8.13 on Cygwin: E170000 or E180001: Unable to connect to a repository at URL , Unable to open an ra_local session to URL

2015-06-25 Thread Bert Huijben
The cygwin version of Subversion is a unix compilation of subversion running on Windows, via the cygwin libraries. As such it doesn't understand special Windoes paths. If you would use a normal windows client (compiled for windows; not cygwin) it would understand that it should transform file:

Subversion 1.8.13 on Cygwin: E170000 or E180001: Unable to connect to a repository at URL , Unable to open an ra_local session to URL

2015-06-25 Thread MORGAN Marc
Hi, I've been using subversion on my Windows 7 PC with Cygwin with a repository on a Linux server accessed via file://. I installed a brand new Cygwin version yesterday. My local workspace lost its connection to the repository. I can no longer access via svn the repository which I was previously

Re: svn:mergeinfo is acting strange

2015-06-25 Thread Pete Harlan
Hi, If you're using Subversion 1.8, you may find this thread relevant: http://thread.gmane.org/gmane.comp.version-control.subversion.user/118260 It describes specific instances in which Subversion 1.8 (and later) add mergeinfo to nodes. The mergeinfo there may be safely removed. --Pete On Thu

RE: List commits for specific user & date range

2015-06-25 Thread Justin Taylor
Thanks guys, that worked.

Re: svn:mergeinfo is acting strange

2015-06-25 Thread Stefan Hett
Hi Chris, Hi, we've been using SVN for a large in-house project for a number of years and the longer time goes by, the more strange the svn:mergeinfo properties behave. I don't know if the "issues" are completely expected, if our repository somehow has ended up in a state that is unwanted or

svn:mergeinfo is acting strange

2015-06-25 Thread Chris
Hi, we've been using SVN for a large in-house project for a number of years and the longer time goes by, the more strange the svn:mergeinfo properties behave. I don't know if the "issues" are completely expected, if our repository somehow has ended up in a state that is unwanted or if there's s

Re: Facing issue in SVN pre commit hook | svnlook cat

2015-06-25 Thread Dhiraj Prajapati
Thanks a lot. I am a newbie to shell script. I appreciate your help. On 25 Jun 2015 13:45, "Branko Čibej" wrote: > On 25.06.2015 10:10, Dhiraj Prajapati wrote: > > Below is the code snippet I am using. I need the file contents in a > variable. > > > *fileContents=`$SVNLOOK cat $REPOS $FNAME -t

Re: Facing issue in SVN pre commit hook | svnlook cat

2015-06-25 Thread Branko Čibej
On 25.06.2015 10:15, Scott Aron Bloom wrote: > > If the variable $TXN contains a *, it is getting expanded by the echo > command, unix is expanding that before the echo is called. > > > > I would put single around the variable on your echo command > A single quote would make the command print:

RE: Facing issue in SVN pre commit hook | svnlook cat

2015-06-25 Thread Scott Aron Bloom
If the variable $TXN contains a *, it is getting expanded by the echo command, unix is expanding that before the echo is called. I would put single around the variable on your echo command From: Dhiraj Prajapati [mailto:dhiraj.prajap...@games24x7.com] Sent: Thursday, June 25, 2015 1:10 AM To: Br

Re: Facing issue in SVN pre commit hook | svnlook cat

2015-06-25 Thread Branko Čibej
On 25.06.2015 10:10, Dhiraj Prajapati wrote: > Below is the code snippet I am using. I need the file contents in a > variable. > > *fileContents=`$SVNLOOK cat $REPOS $FNAME -t $TXN` > * > *echo "contents:" $fileContents 1>&2* > > Am I doing anything wrong? Yes of course you are. You really should

Re: Facing issue in SVN pre commit hook | svnlook cat

2015-06-25 Thread Dhiraj Prajapati
Below is the code snippet I am using. I need the file contents in a variable. *fileContents=`$SVNLOOK cat $REPOS $FNAME -t $TXN`* *echo "contents:" $fileContents 1>&2* Am I doing anything wrong? -Dhiraj On Thu, Jun 25, 2015 at 1:37 PM, Branko Čibej wrote: > On 25.06.2015 09:31, Dhiraj Praja

Re: Facing issue in SVN pre commit hook | svnlook cat

2015-06-25 Thread Branko Čibej
On 25.06.2015 09:31, Dhiraj Prajapati wrote: > Hi, > I have a pre-commit hook which validates the contents of the files > being committed before commit. > I am using /svnlook cat/ command to read the contents of the file > being committed. > However, whenever there is a leading slash on a particula

Facing issue in SVN pre commit hook | svnlook cat

2015-06-25 Thread Dhiraj Prajapati
Hi, I have a pre-commit hook which validates the contents of the files being committed before commit. I am using *svnlook cat* command to read the contents of the file being committed. However, whenever there is a leading slash on a particular line in the file, the *svnlook cat* command fails to di