Re: help on accessing data in SVN

2013-12-03 Thread Nico Kadel-Garcia
Hmm. Yes, there is a problem with the Subvresion based download. download works fine with git clone git://git.code.sf.net/p/firebird/NETProvider firebird-NETProvider If you need to make local modifications to the code, and store your changes without write access to the upstream branches, this

RE: Hardware requirements for windows subversion

2013-12-03 Thread Bob Archer
Hi Edward, Thank you for your response. I have a .net site the file size is 2 GB. There are only 2 developers working on this project remotely. Do I need windows server or windows 7? What kind of hardware, RAM, diskspace do I need? Do I still need Apache server? Where can i get Subversion

Re: Help with post-commit script

2013-12-03 Thread Daniel Shahaf
Andrew Reedick wrote on Mon, Dec 02, 2013 at 16:07:52 -0600: #!/bin/bash set -o pipefail REPOS_PATH=$1 REV=$2 # or is it the other way around? It's this way around. RECIPIENT_LIST=$(svnlook propget ... my:email_list_prop) Need to set PATH first for this to work. svnlook changed ...

RE: Help with post-commit script

2013-12-03 Thread Andrew Reedick
-Original Message- From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] Sent: Tuesday, December 03, 2013 1:14 PM To: Andrew Reedick Cc: Alfred von Campe; users@subversion.apache.org Subject: Re: Help with post-commit script svnlook changed ... $CHANGED_LIST || exit 1 cat

Re: Help with post-commit script

2013-12-03 Thread Daniel Shahaf
Andrew Reedick wrote on Tue, Dec 03, 2013 at 15:04:13 -0500: -Original Message- From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] Sent: Tuesday, December 03, 2013 1:14 PM To: Andrew Reedick Cc: Alfred von Campe; users@subversion.apache.org Subject: Re: Help with

Re: Help with post-commit script

2013-12-03 Thread Alfred von Campe
Thanks to all for the suggestions. I actually oversimplified the situation a little bit (this repo has multiple projects with trunk, branches, and tags directories underneath them), which makes the script a little more complicated. But the concepts presented so far have given me a path