Re: Accessing Remote SVN Repositories

2013-07-17 Thread Geoff Hoffman
;external" - see here [2]. It should also be mentioned that it may be simple for them to simply host your stuff too on the same server - as it sounds like they're already set up to do so. [1] http://stackoverflow.com/questions/2140954/which-protocol-svn-or-https [2] http://blog.jmfeurp

Re: Advice for changing filename case in SVN on case insensitive system

2013-06-20 Thread Geoff Hoffman
L svn mv's but seemed like that could take a very long time to do... Geoff Hoffman Solutions Architect & LAMP Engineer phone +1 623.399.4918 mobile +1 480.231.8323 web CardinalPath.com <http://goo.gl/TuuiO> On Thu, Jun 20, 2013 at 3:45 PM, Dave Huang wrote: > On 6/20/2013

Advice for changing filename case in SVN on case insensitive system

2013-06-20 Thread Geoff Hoffman
We have a bunch of Kohana 3.2 projects in revision control, all with lower case filenames. We're upgrading to Kohana 3.3; one of the main changes to Kohana 3.3 is implementing PSR-0 filename conventions, which require the class Model_Myclass to be found in Model/Myclass.php ... in our current repo

Re: trunk naming best practice question

2013-05-06 Thread Geoff Hoffman
nt or /branches/v2.0alpha. I've also seen it work where each developer has his/her own branch - /branches/yourname /branches/hername. Does that give you some ideas? Geoff Hoffman Solutions Architect & LAMP Engineer phone +1 623.399.4918 mobile +1 480.231.8323 web CardinalPath.com <ht

Re: Graphical version tree

2013-04-03 Thread Geoff Hoffman
What platform? On Wed, Apr 3, 2013 at 11:52 AM, Olivier Antoine wrote: > Hi, > > I'm beginning with Subversion, > > I'd like to know if there is a tool that could display a graphical > representation of the version tree of a file? > > Regards, > Olivier > -- Connect with us on twitter

Re: Tagging svn:externals

2013-02-20 Thread Geoff Hoffman
Externals are separate repositories by design. You should reference externals to a specific revision, or tag the externals first and rewrite your externals to point to the tagged externals. On Wed, Feb 20, 2013 at 10:28 AM, C M wrote: > It seems that SVN does not tag svn:externals. > > We hav

Re: Question: svn list command

2013-02-20 Thread Geoff Hoffman
On Wed, Feb 20, 2013 at 10:02 AM, C M wrote: > The "svn list" command does not list directory entries if they are > svn:externals. > > Assuming this is by design, is there a way for it list externals also? > cd into the local directory defined by your external, then svn list there. -- Conne

Re: same upper and lower case directory name?

2013-02-19 Thread Geoff Hoffman
Les, I would guess the answer is no. We've had issues on both Mac and Windows with case sensitivity, unfortunately. It's not a problem with Subversion, per se, but with the underlying file system of case insensitive systems. On Tue, Feb 19, 2013 at 2:57 PM, Les Mikesell wrote: > We have a

SVN Warnings W200000, W170000, E20009? What it means...

2013-02-07 Thread Geoff Hoffman
Did a full fresh checkout of a myproject this morning... $ svn checkout http://server/svn/myproject myworkingdir ... svn: warning: W20: Error handling externals definition for 'myproject/trunk/deploy/modules/foo': svn: warning: W17: URL 'http://server/svn/library/trunk/foo/trunk' at revisi

Re: hello

2012-12-04 Thread Geoff Hoffman
//svnbook.red-bean.com/nightly/en/svn.ref.svn.c.commit.html> . Geoff Hoffman Solutions Architect & LAMP Engineer phone +1 623.399.4918 mobile +1 480.231.8323 web CardinalPath.com <http://goo.gl/TuuiO> On Tue, Dec 4, 2012 at 8:49 AM, Mahmoudhashemi, Azadeh < mahmoudhash...@embedde

Re: Can't connect to SVN servers via HTTP-- could not read status line: connection was closed by server

2012-10-11 Thread Geoff Hoffman
I've seen that same message before many times, but always with my own misconfigured http+mod_dav+dav_svn setup, never with someone else's working repo. Try https instead of http? Check proxy settings? Check here for more possibilities: http://stackoverflow.com/questions/613149/svn-could-not-read-

Re: Put a tag in the wrong place

2012-04-25 Thread Geoff Hoffman
On Wed, Apr 25, 2012 at 8:22 AM, Andy Levy wrote: > On Wed, Apr 25, 2012 at 11:12, Geoffrey Myers > wrote: > > I created a tag in my branches directory, can I simply move it to the > tags > > directory? My google foo was not successful. > > Yes. Subversion preserves history through copies & mov

Re: AuthzSVNAccessFile size issues

2012-03-22 Thread Geoff Hoffman
On Thu, Mar 22, 2012 at 9:11 AM, Joel Eidsath wrote: > I was just handed a large SVN install with thousands of users and > hundreds of individual repositories. It is experiencing serious > performance issues. I believe that it mostly boils down to a 14MB > AuthzSVNAccessFile. > > What can I do to

Re: Quirk with svn:ignore

2012-03-19 Thread Geoff Hoffman
On Mon, Mar 19, 2012 at 10:50 AM, Ryan Schmidt < subversion-20...@ryandesign.com> wrote: > > On Mar 19, 2012, at 12:16, Giulio Troccoli wrote: > > > Ok, have you tried ignoring just logs rather than all files, I mean svn > ps svn:ignore logs ? > > The logs directory has already been added and comm

Re: Quirk with svn:ignore

2012-03-19 Thread Geoff Hoffman
On Mon, Mar 19, 2012 at 10:16 AM, Giulio Troccoli < giulio.trocc...@mediatelgroup.co.uk> wrote: > > > On 19/03/12 17:11, Geoff Hoffman wrote: > > > > > On Mon, Mar 19, 2012 at 9:32 AM, Giulio Troccoli < > giulio.trocc...@mediatelgroup.co.uk> wrote: > &g

Re: Quirk with svn:ignore

2012-03-19 Thread Geoff Hoffman
Ahhh Rats. Thanks I missed that. On Mon, Mar 19, 2012 at 10:13 AM, Mark Phippard wrote: > in that same directory. -- This email, including any attachments, is for the sole use of the intended recipient and may contain confidential information. If you are not the intended recipient, pleas

Re: Quirk with svn:ignore

2012-03-19 Thread Geoff Hoffman
On Mon, Mar 19, 2012 at 9:32 AM, Giulio Troccoli < giulio.trocc...@mediatelgroup.co.uk> wrote: > Do you mean that the files are shown with an A in the first column? No, they're shown as ? logs/error.log ? logs/access.log But they're not automagically ignored, even though they match "logs/*" wh

Quirk with svn:ignore

2012-03-19 Thread Geoff Hoffman
I ran into an unexpected behavior with svn:ignore today and wanted to see if someone can verify whether this is a bug (in the current version) or just an aspect of how Subversion works. We're still on 1.6x. Given a tree with trunk + cache + htdocs + logs + system I have tried putting

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Geoff Hoffman
On Fri, Mar 9, 2012 at 11:34 AM, Stefan Sperling wrote: > On Fri, Mar 09, 2012 at 10:45:13AM -0700, Geoff Hoffman wrote: > > A couple of things I find interesting... the bug tracker you linked to > is 3 > > years old and still on tigris.org. Assuming that is still the val

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Geoff Hoffman
On Fri, Mar 9, 2012 at 10:24 AM, Stefan Sperling wrote: > On Fri, Mar 09, 2012 at 01:56:34PM +, Simon Dean wrote: > > Hi > > > > Are there any plans to add a command to SVN that cleans a working copy > or path of all unversioned and/or ignored files and directories? > > There is a related ope

Re: What's the process to svnsync a larger repository

2012-03-02 Thread Geoff Hoffman
On Fri, Mar 2, 2012 at 9:25 AM, Les Mikesell wrote: > On Fri, Mar 2, 2012 at 10:20 AM, Geoff Hoffman > wrote: > > > >> > I created the mirror repository fine, ran svnsync init and svnsync > sync > >> > on > >> > it, then as it started going f

Re: What's the process to svnsync a larger repository

2012-03-02 Thread Geoff Hoffman
On Fri, Mar 2, 2012 at 9:13 AM, Les Mikesell wrote: > On Fri, Mar 2, 2012 at 9:41 AM, Geoff Hoffman > wrote: > > I'm learning some gotchas with svnsync this week. As per my typical > method > > of learning I try 3 wrong ways before finally realizing the right w

Re: What's the process to svnsync a larger repository

2012-03-02 Thread Geoff Hoffman
On Fri, Mar 2, 2012 at 8:47 AM, Philip Martin wrote: > Geoff Hoffman writes: > > > So, my question is, before I whack a perfectly fine "almost mirrored" > > repository, can I svn propset -r 0 all the stuff needed by svnsync > > manually, to start syncing at -r

Re: What's the process to svnsync a larger repository

2012-03-02 Thread Geoff Hoffman
Sweet - if that works it'll save a lot of time. Can someone paste an svn proplist --revprop -r 0 from a mirror repo so I can see all the stuff to set? On Fri, Mar 2, 2012 at 8:47 AM, Philip Martin wrote: > Geoff Hoffman writes: > > > So, my question is, before I whack a perfe

Re: What's the process to svnsync a larger repository

2012-03-02 Thread Geoff Hoffman
p;utm_medium=CPemail&utm_campaign=dEckman> *PublicInsite, VKI Studios, and WebShare have merged to form Cardinal Path* On Fri, Mar 2, 2012 at 8:45 AM, Mark Phippard wrote: > On Fri, Mar 2, 2012 at 10:41 AM, Geoff Hoffman > wrote: > > I'm learning some gotchas with

What's the process to svnsync a larger repository

2012-03-02 Thread Geoff Hoffman
I'm learning some gotchas with svnsync this week. As per my typical method of learning I try 3 wrong ways before finally realizing the right way to do most things. We have about a 1GB svn repo on Ubuntu at -r 3738, and I'm trying to get it mirrored on Win 7 running VisualSVN. I created the mirror

Re: Automatic tagging

2012-02-23 Thread Geoff Hoffman
Tagging is simply an svn copy operation. svn copy is scriptable. Does that help at all? On Thu, Feb 23, 2012 at 10:07 AM, List Man wrote: > Is there a way to tag a project based on some requirements? I am trying > to script it and I am coming up empty. I am tired of manually tagging for > each

Re: switch to ignore files that have not been checked in?

2012-01-11 Thread Geoff Hoffman
On Wed, Jan 11, 2012 at 6:45 PM, Andy Levy wrote: > On Wed, Jan 11, 2012 at 18:49, Steve Kelem wrote: > > I'm trying to add properties to a bunch of files that have a common file > extension, but are not the only files in the directory/directories. > > > > I would like to run something like: > >

Re: Create a new working copy by cloning a subtree of an existing working copy?

2011-12-20 Thread Geoff Hoffman
On Tue, Dec 20, 2011 at 9:01 AM, Cooke, Mark wrote: > > -Original Message- > > From: Geoff Hoffman [mailto:ghoff...@cardinalpath.com] > > Sent: 20 December 2011 15:59 > > To: Kuno Meyer > > Cc: users@subversion.apache.org > > Subject: Re: Create a n

Re: Create a new working copy by cloning a subtree of an existing working copy?

2011-12-20 Thread Geoff Hoffman
On Tue, Dec 20, 2011 at 7:44 AM, Kuno Meyer wrote: > With SVN 1.7, is there a way to create a new working copy by cloning a > subtree > of an existing working copy? > > For example: > - Already checked out: > wc1/ > wc1/.svn > wc1/src > wc1/data > wc1/data/bin1 > > - Desired: a new work

Re: small feature request: when checkout/update print out svn:external addresses

2011-12-09 Thread Geoff Hoffman
On Fri, Dec 9, 2011 at 5:24 AM, Stefan Sperling wrote: > On Fri, Dec 09, 2011 at 07:10:41AM +, Cooke, Mark wrote: > > I don't use the command line much but could you not plit it over three > lines? > > {{{ > > Fetching external item: > > from : '...' > > into : '...' > > }}} > > I like this

Re: Difference between 'svn update' and 'svn checkout'

2011-11-12 Thread Geoff Hoffman
Wellington, are you by any chance trying to update your development server working copy with your post-commit hook? I'd recommend svn update or svn update --force over checkout simply due to the fact that it only brings changed files, not the whole repository (save network bandwidth, time, etc.)

Re: 1st checkout of my life => network connection closed unexpectedly

2011-11-10 Thread Geoff Hoffman
On Thu, Nov 10, 2011 at 11:56 PM, lolveley wrote: > hello, > > here is the result of telnet : > > > [olivier@centos ~]$ telnet 192.168.1.66 3690 > Trying 192.168.1.66... > Connected to 192.168.1.66. > Escape character is '^]'. > Connection closed by fo

Re: 1st checkout of my life => network connection closed unexpectedly

2011-11-10 Thread Geoff Hoffman
> svn://:3690/svn_eclipse What is the IP of the NAS on your LAN? it has to work at svn:// 192.168.1.105/ first, before you can get to it from the net via your DynDNS url. Once you verified that you can connect from a PC on your LAN... check your internet device eg cable/DSL router (login as admin

Re: GnomeKeyring: not entering passwords

2011-11-03 Thread Geoff Hoffman
On Thu, Nov 3, 2011 at 11:54 AM, Mark Phippard wrote: > On Thu, Nov 3, 2011 at 2:38 PM, rupert.thurner > wrote: > >> while looking for a possibility to help a user of subversion so he >> does not need to type the server password all the time, i got hinted >> to GnomeKeyring and seahorse. subvers

Re: Where/How to get a Test Subversion Server

2011-10-29 Thread Geoff Hoffman
On Sat, Oct 29, 2011 at 10:52 AM, Stefan Sperling wrote: > There is no need to set up a server to try out Subversion. > On Sat, Oct 29, 2011 at 11:03 AM, Les Mikesell wrote: > > Pretty much everything you can do with subversion will work with a > local repository and file:/// references. Do

Re: First Hands-on Subversion—Where/How?

2011-10-28 Thread Geoff Hoffman
On Fri, Oct 28, 2011 at 3:52 PM, Pietro Moras wrote: > > more specific questions > > My pleasure, dear Geoff, >Here you have some very Specific Questions. > > SQ1] How to get what I presume is a nice Subversion prompt: > > $ > > There is no prompt, other than terminal. Read the redbook plea

Re: First Hands-on Subversion—Where/How?

2011-10-28 Thread Geoff Hoffman
On Fri, Oct 28, 2011 at 11:00 AM, Pietro Moras wrote: > Dear Subversion cognoscenti, > > Seriously intentioned to explore what Subversion is all about, armed > with good will and a good reference book (“Version Control with > Subversion”, by Ben Collins-Sussman, Brian W. Fitzpatrick, C. Mich

Re: How to recover deleted directory in repository?

2011-10-09 Thread Geoff Hoffman
On Sun, Oct 9, 2011 at 1:00 AM, Ryan Schmidt < subversion-20...@ryandesign.com> wrote: > On Oct 9, 2011, at 00:45, Geoff Hoffman wrote: > > > On Sat, Oct 8, 2011 at 8:38 PM, Xiang Liu wrote: > > > >> I have removed a directory by mistake. > >> > &g

Re: How to recover deleted directory in repository?

2011-10-08 Thread Geoff Hoffman
On Sat, Oct 8, 2011 at 8:38 PM, Xiang Liu wrote: > Hi, everybody > > I have removed a directory by mistake. > > > svn del https://pl3.projectlocker.com/gnwd/notes/svn/a_dir > > So, How can I recover it? > > Thanks. > xiang > Xiang- What I would do is pick a new location on your machine and expo

Re: Email notification on commit

2011-10-04 Thread Geoff Hoffman
On Tue, Oct 4, 2011 at 3:50 PM, Olga Kramer wrote: > Hi, > > Can someone point me to some detailed instructions on how to setup > subversion to send email every-time one of my 3 users commits a file? > > I am running subversion on ubuntu v11.04. > > Thanks > Olga > Hi Olga, Maybe you already re

Re: Full text search engines for SVN?

2011-09-26 Thread Geoff Hoffman
On Mon, Sep 26, 2011 at 7:40 PM, Geoff Hoffman wrote: > > On Mon, Sep 26, 2011 at 6:46 PM, Joshua J. Kugler wrote: > >> Does anyone have any full-text search engines they'd recommend for >> Subversion? I've found a couple geared specifically for subversion: &

Re: Full text search engines for SVN?

2011-09-26 Thread Geoff Hoffman
On Mon, Sep 26, 2011 at 6:46 PM, Joshua J. Kugler wrote: > Does anyone have any full-text search engines they'd recommend for > Subversion? I've found a couple geared specifically for subversion: > > http://www.supose.org/wiki/supose > > and > > http://svn-search.sourceforge.net/ > > But they bot

Re: SVN

2011-09-22 Thread Geoff Hoffman
Read this http://svnbook.red-bean.com/ On Thu, Sep 22, 2011 at 5:37 AM, Sukumar Gorai wrote: > Why we need SVN setup? And if is important then how to install? Please > explain and how to use SVN? > > -- > Regards, > Sukumar Gorai > Jr. Software Developer > Bluehorse Software > email-sukumar.go..

Re: How to make password to store in Encrypted format

2011-09-20 Thread Geoff Hoffman
> > > On Tue, Sep 20, 2011 at 7:03 AM, Bob Archer wrote: > >> > How to make password to store in Encrypted format >> > >> > When I checkout a code i got the following message. I was searching in >> the >> > net, I couldn't locate a proper document to avoid/configure svn password >> > locally encry

Re: How to make password to store in Encrypted format

2011-09-20 Thread Geoff Hoffman
On Tue, Sep 20, 2011 at 7:03 AM, Bob Archer wrote: > > How to make password to store in Encrypted format > > > > When I checkout a code i got the following message. I was searching in > the > > net, I couldn't locate a proper document to avoid/configure svn password > > locally encrypted. Any hel

Re: Ignore development changes.

2011-09-19 Thread Geoff Hoffman
The way we do it is: svn:ignore filename.ext filename.local.ext filename.stage.ext filename.prod.ext On local make a symlink to local version: ln -s filename.local.ext filename.ext On staging make a symlink to stage version: ln -s filename.stage.ext filename.ext On prod, make a symlink to prod

Re: Changes are getting clobbered when working on remote svn files

2011-09-01 Thread Geoff Hoffman
On Thu, Sep 1, 2011 at 1:38 PM, Ryan Schmidt < subversion-20...@ryandesign.com> wrote: > On Sep 1, 2011, at 13:52, Geoff Hoffman wrote: > > > I thought I would send this to the list to see if others have experienced > similar issues; and as a warning to look out for this sc

Re: Changes are getting clobbered when working on remote svn files

2011-09-01 Thread Geoff Hoffman
On Thu, Sep 1, 2011 at 12:24 PM, Konstantin Kolinko wrote: > 2011/9/1 Geoff Hoffman : > > We have a mixed development environment (Mac, Win, Linux). > > We have an SVN 1.6 repo on the LAN (Ubuntu server 10.04 LTS). > > We have a development server on the LAN (Ubuntu serv

Changes are getting clobbered when working on remote svn files

2011-09-01 Thread Geoff Hoffman
We have a mixed development environment (Mac, Win, Linux). We have an SVN 1.6 repo on the LAN (Ubuntu server 10.04 LTS). We have a development server on the LAN (Ubuntu server 10.04 LTS). (I don't think any of the hardware or software matters in this case, but here it is anyway) Most of us are run

Re: Subversion on Drupal

2011-08-11 Thread Geoff Hoffman
On Thu, Aug 11, 2011 at 7:56 PM, Andy Canfield wrote: > My goal in learning Subversion was to put our web site under version > control. Now I have my doubts as to whether Subversion can handle it. > > The web site uses Drupal. And Drupal has the characteristic that much of > the site is contained

Re: best practice: accessing svn data without co

2011-08-09 Thread Geoff Hoffman
On Tue, Aug 9, 2011 at 11:27 AM, Jan Ciesko (GMAIL) wrote: > Dear SVN users > > I would like to ask the following: is there a way to access svn data on the > svn server without checking data out? I would need to create temporal tar'ed > archive of a versioned directory that is then attached to a w

Re: Do svn:externals changes need to be committed to work?

2011-08-02 Thread Geoff Hoffman
Hey André, On Mon, Aug 1, 2011 at 6:54 PM, André Hänsel wrote: > I am trying to add an svn:externals definition to a working copy. I set the > property on a directory and ran svn update on that directory, but nothing > is > fetched. > One of my favorite topics. svn:externals is tricky to under

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Geoff Hoffman
On Sat, Jul 30, 2011 at 6:20 PM, Manuel Lemos wrote: > Hello, > > on 07/30/2011 09:16 PM Geoff Hoffman said the following: > > > I have already a pure PHP implementation > > > > > > Manuel, didn't you also write whole Mailer library for PHPClasses

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Geoff Hoffman
On Sat, Jul 30, 2011 at 3:56 PM, Manuel Lemos wrote: > I have already a pure PHP implementation Manuel, didn't you also write whole Mailer library for PHPClasses.org and start that site? When do you sleep? You're speaking to svn server directly from PHP, with stream context or exec( ) bridge s

Re: disable security hole in svn+ssh?

2011-07-28 Thread Geoff Hoffman
On Thu, Jul 28, 2011 at 7:29 AM, Andy Canfield wrote: > Hold it right there. You're providing password based repository access >> via HTTP, not HTTPS? Please rethink this unless you *want* the >> passwords for this repository to be quite insecure and sniffable, >> especially if you're using norma

Re: svn update via HTTPS works 95% of the time, then randomly shanks, "issuer not trusted"

2011-07-26 Thread Geoff Hoffman
On Tue, Jul 26, 2011 at 1:20 PM, Dan Yost wrote: > On Tue, Jul 26, 2011 at 3:11 PM, Geoff Hoffman > wrote: > > Long shot here... this is probably off base, as I am not that experienced > > with lower-level SSL problems, but are you by chance using an issuer that > >

Re: svn update via HTTPS works 95% of the time, then randomly shanks, "issuer not trusted"

2011-07-26 Thread Geoff Hoffman
Long shot here... this is probably off base, as I am not that experienced with lower-level SSL problems, but are you by chance using an issuer that provides an intermediary certificate? For example, to install an SSL cert from GoDaddy, you have to also include the gd_bundle.crt. The Wikipedia arti

Re: How to clean the working dir from .svn folders ?

2011-07-26 Thread Geoff Hoffman
On Tue, Jul 26, 2011 at 9:27 AM, Damien Mistic wrote: > And I maintain the final aim is absolutely not the same as ‘export’ does. > If you say so. I'm not sure how that could be possible given my understanding of the svn export command. Anyway, glad you got it sorted out!

Re: Question about commit/udpate inside externals

2011-07-26 Thread Geoff Hoffman
On Tue, Jul 26, 2011 at 8:08 AM, Thomas Clement wrote: > Hello list, > > I have a repository which contains an external to another repository with a > fixed revision number. > Something like: "-rxxx svn+ssh://..." > > I noticed I can make modifications inside this external and commit the > modific

Re: How to clean the working dir from .svn folders ?

2011-07-26 Thread Geoff Hoffman
>> *From:* Geoff Hoffman >> *Sent:* Tuesday, July 26, 2011 4:05 PM >> *To:* users@subversion.apache.org >> *Subject:* Re: How to clean the working dir from .svn folders ? >> >> I believe you can use a bash script similar to the following, but you may >>

Re: How to clean the working dir from .svn folders ?

2011-07-26 Thread Geoff Hoffman
> > > *From:* Geoff Hoffman > *Sent:* Tuesday, July 26, 2011 4:05 PM > *To:* users@subversion.apache.org > *Subject:* Re: How to clean the working dir from .svn folders ? > > I believe you can use a bash script similar to the following, but you may > need to set a

Re: How to clean the working dir from .svn folders ?

2011-07-26 Thread Geoff Hoffman
I believe you can use a bash script similar to the following, but you may need to set a flag from PHP so that cron running as root or admin has permission to delete them. Hope it helps- #!/bin/sh echo "recursively removing .svn folders from" pwd rm -rf `find . -type d -name .svn`

Re: Subversion access control

2011-07-22 Thread Geoff Hoffman
On Thu, Jul 21, 2011 at 11:19 PM, Andy Canfield wrote: > I notice that you don't have any entries that read "... = r"; everyone who > can read can write also. No need? > Yeah, I just don't have a use case for that. The RSS feed of a repo commits from websvn is much more useful than read-only acc

Re: Subversion access control / Linux users etc.

2011-07-21 Thread Geoff Hoffman
On Thu, Jul 21, 2011 at 4:54 AM, Andy Canfield wrote: > ** > More user/command interaction - > > The commands to create the Subversion Repository Parent directory were > *sudo bash > mkdir /data/svn > chmod a+w /data/svn* > This created this directory: > *drwxrwxrwx 4 root 4096 201

Re: Subversion access control

2011-07-21 Thread Geoff Hoffman
> > > > On Wed, Jul 20, 2011 at 9:14 PM, Andy Canfield > wrote: > >> ** >> Thank you very much. >> >> >> On 07/20/2011 12:19 PM, Nico Kadel-Garcia wrote: >> >> On Tue, Jul 19, 2011 at 11:14 PM, Andy Canfield >> wrote: >> >> One thing has hit my mind today that I don't think you realize ... >> >

Re: Subversion access control

2011-07-21 Thread Geoff Hoffman
On Wed, Jul 20, 2011 at 9:14 PM, Andy Canfield wrote: > ** > Thank you very much. > > > On 07/20/2011 12:19 PM, Nico Kadel-Garcia wrote: > > On Tue, Jul 19, 2011 at 11:14 PM, Andy Canfield > wrote: > > One thing has hit my mind today that I don't think you realize ... > > I have never, in m

Re: Subversion access control

2011-07-20 Thread Geoff Hoffman
Andy, I thought you were off Apache and onto svnserve. Anyway, I sent you this info last week - maybe you missed it. It is pasted again below. I will grant to you that it is tricky to set up. The david winter blog post below spells it out perfectly... for a single repo setup, multiple users. For

Re: Subversion: list of respositories

2011-07-17 Thread Geoff Hoffman
On Sat, Jul 16, 2011 at 11:06 PM, Andy Canfield wrote: > ** > How do you get a list of repositories from svnserver? The only way I can > figure out is: > *ssh usern...@example.com > sudo bash > ls -ld /var/svn/** > And, of course, this makes an assumption about where on the server the

Re: Subversion: via Apache

2011-07-17 Thread Geoff Hoffman
Test your config with -t

Re: Doing svn checkouts on top of svn checkouts?????

2011-07-12 Thread Geoff Hoffman
> > Geoff Hoffman wrote on Mon, Jul 11, 2011 at 18:20:41 -0700: > > This is a feature, yes. Subversion does allow your working copy to point > to > > more than 1 svn path. > > > On Mon, Jul 11, 2011 at 7:21 PM, Daniel Shahaf wrote: > Geoff: you cannot point a

Re: Doing svn checkouts on top of svn checkouts?????

2011-07-11 Thread Geoff Hoffman
1, 2011 at 9:20 PM, Geoff Hoffman > wrote: > > This is a feature, yes. Subversion does allow your working copy to point > to > >> 1 svn path. > > Sounds a lot like when you use svn:externals. This may be the more > > "standard" way of achieving what you'

Re: Doing svn checkouts on top of svn checkouts?????

2011-07-11 Thread Geoff Hoffman
This is a feature, yes. Subversion does allow your working copy to point to > 1 svn path. Sounds a lot like when you use svn:externals. This may be the more "standard" way of achieving what you're talking about. If you change code in [yourstuff] and [stuff pointing back to external's home] then w

Is it possible to svnsync across platform OS and SVN versions?

2011-07-08 Thread Geoff Hoffman
Do two SVN servers need to be running identical release versions in order to use svnsync on them? What about the OS? I built an SVN server on Ubuntu server 10.04 LTS, --version says 1.6.6 (r40053) Now my guys want me to mirror it read-only onto a Windows 7 box and since most of the binaries I fi

Re: Trials with memcached

2011-07-07 Thread Geoff Hoffman
Tony - Strange results to be sure. You probably thought of all this, but... Did you check Memcached is working correctly without Subversion? Did you check the results of checking out or updating the 2nd or 3rd time? In other words, it may take longer the first time because every object in the repo

Re: Branching Questions

2011-07-01 Thread Geoff Hoffman
> 3. What is the best way to lock the Trunk so only certain users can access > it, using Hook Script or using admin tool? > use Subversion's built-in path-based authorization or > possibly some Apache configuration tweaks I just followed this guide yesterday, coincidentally, and it worked p

Re: svn merge - get the last revision of a file(s)

2011-07-01 Thread Geoff Hoffman
Rui - I'm not sure I understand what you're asking. Maybe an example would help.

Re: Moving an existing Repository to a newly created repository

2011-06-24 Thread Geoff Hoffman
On Fri, Jun 24, 2011 at 2:28 PM, Tech Geek wrote: > > You should be able to use regular old mv on the command line for this. > So, > svadmin create /var/lib/svn/Projects # Create new repo Projects > mv /var/lib/svn/ProjectA A # Rename ProjectA to A > and then? > how do I move repository "A" und

Re: Moving an existing Repository to a newly created repository

2011-06-24 Thread Geoff Hoffman
You should be able to use regular old mv on the command line for this. I just did this yesterday and was happily surprised that everything just worked. (Requires svn switch on the client side working copies.) On Fri, Jun 24, 2011 at 11:28 AM, Tech Geek wrote: > All our SVN repositories are stor

Re: branch question

2011-06-23 Thread Geoff Hoffman
What I mean by that is, it may have ramifications down the road for *your workflow* (I can't think of any obvious examples), but svn copy [from] [to] works on any path, local or remote, as you would expect. On Thu, Jun 23, 2011 at 1:57 PM, Geoff Hoffman wrote: > Not in any general s

Re: branch question

2011-06-23 Thread Geoff Hoffman
Not in any general sense, no. On Thu, Jun 23, 2011 at 1:27 PM, Phil Pinkerton wrote: > Any issues with creating a branch from a branch? no trunk and no merge > back to first branch ? > > > Phil > > >

Re: How to setup SVN with HTTPS on Apache for Windows?

2011-06-22 Thread Geoff Hoffman
Get everything working as a regular http://server/svn/repo then get a cert or self sign (not related to svn) and move your vhost to port 443 (open that port on your firewall if applicable).

Re: xml-aware diff tools?

2011-06-20 Thread Geoff Hoffman
Try a visual diff tool such as Araxis Merge, Beyond Compare, etc.? On Mon, Jun 20, 2011 at 8:24 AM, Les Mikesell wrote: > Are there any tools that would work with subversion to view xml file diffs > in a more meaningful way than just the changed lines? > > -- > Les Mikesell > lesmikes...@gmai

Re: User Template

2011-06-17 Thread Geoff Hoffman
On Fri, Jun 17, 2011 at 2:54 AM, Ryan Schmidt < subversion-20...@ryandesign.com> wrote: > > On Jun 17, 2011, at 02:47, Hrishikesh Gokhale wrote: > > > I am new to SVN installation . I am unable to find a way to add a custom > > template which would get fired up when a user performs a commit (in hi

Re: Problem Loading Huge Repository

2011-06-16 Thread Geoff Hoffman
on to every problem. On Thu, Jun 16, 2011 at 5:08 PM, Bruno Antunes wrote: > > On Jun 17, 2011, at 24:59 , Geoff Hoffman wrote: > > > > On Thu, Jun 16, 2011 at 4:05 PM, Bruno Antunes wrote: > >> Hi, >> >> As part of the work of my PhD thesis I need to l

Re: Problem Loading Huge Repository

2011-06-16 Thread Geoff Hoffman
On Thu, Jun 16, 2011 at 4:05 PM, Bruno Antunes wrote: > Hi, > > As part of the work of my PhD thesis I need to load the ASF Subversion > repository into my own local repository in order to mine and extract > information from the repository without overloading the ASF servers. > > I have downloade

Re: Evil UTF-8 Character in filename in repo causing issues on my wc

2011-06-16 Thread Geoff Hoffman
On Thu, Jun 16, 2011 at 11:07 AM, B Smith-Mannschott wrote: > On Thu, Jun 16, 2011 at 18:24, Geoff Hoffman > wrote: > > > > > > On Wed, Jun 15, 2011 at 11:19 PM, Markus Schaber < > m.scha...@3s-software.com> > > wrote: > >> > >&

Re: Evil UTF-8 Character in filename in repo causing issues on my wc

2011-06-16 Thread Geoff Hoffman
On Wed, Jun 15, 2011 at 11:19 PM, Markus Schaber wrote: > Hi, Geoff, > > Von: Geoff Hoffman [mailto:ghoff...@cardinalpath.com] > >>> I have a file with some (I believe) Portuguese characters in the > >>> filename that someone managed to store in the repo without

Re: For Siebel

2011-06-15 Thread Geoff Hoffman
On Wed, Jun 15, 2011 at 3:06 PM, Mudumbai, Venkat < venkat.mudum...@mercer.com> wrote: > Hi, > We are planning to user SUBVERSION & TortoiseSVN for our Siebel Tools as a > source control tools. > Siebel development using tools, as it is a a object based environment, > where in we checkout and ch

Re: Evil UTF-8 Character in filename in repo causing issues on my wc

2011-06-15 Thread Geoff Hoffman
On Tue, Jun 14, 2011 at 11:36 PM, Markus Schaber wrote: > Hi, Geoff, > > Von: Geoff Hoffman [mailto:ghoff...@cardinalpath.com] > > > I have a file with some (I believe) Portuguese characters in the > filename that someone managed to store in the repo without any problem, &

Evil UTF-8 Character in filename in repo causing issues on my wc

2011-06-14 Thread Geoff Hoffman
I have a file with some (I believe) Portuguese characters in the filename that someone managed to store in the repo without any problem, and I checked it out without issues, too. However, now on my working copy, it thinks that file is locally new. I did an svn copy ok, but I can't seem to delete t

Re: More questions

2011-06-14 Thread Geoff Hoffman
It's only a bad idea to use svn:externals if you don't know what they're for and don't want to invest the time to learn. If you do not want multiple copies of code, for instance, a library shared by more than one app, then it is not only smart, it's the best (only) way to do it. If you only are g

Re: Questions

2011-06-13 Thread Geoff Hoffman
just remove the > svn:keywords property, delete the file and then perform an update on > the wc. > > That will give you the state of the $Id$ keyword as it was initialy > committed. > -- > > Lorenz > > -- Geoff Hoffman Solutions Architect & LAMP Engineer

Re: Subversion 1.6 on Ubuntu Server 11.x

2011-06-11 Thread Geoff Hoffman
On Sat, Jun 11, 2011 at 8:27 AM, Nico Kadel-Garcia wrote: > On Fri, Jun 10, 2011 at 6:26 PM, Geoff Hoffman > wrote: > > I posted about this on the Ubuntu forums but thus far nobody has replied. > > When SSH'd into the box and using svn operations, I'm getting the &

Subversion 1.6 on Ubuntu Server 11.x

2011-06-10 Thread Geoff Hoffman
I posted about this on the Ubuntu forums but thus far nobody has replied. When SSH'd into the box and using svn operations, I'm getting the dastardly warning about my password is going to get stored to disk unencrypted. I read about Subversion 1.6 security changes

svn:externals and local directories

2010-10-20 Thread Geoff Hoffman
Hi SVN, We're stuck for the time being with server 1.4.2 but have updated our svn client(s) on Windows PCs (most of use Cygwin, CollabNet command line client and Tortoise) periodically over the last year or two. About 7 or 8 months ago, we began using svn:externals heavily. At the time, I cou

Re: can I checkout only a revision files ?

2010-10-20 Thread Geoff Hoffman
> On Wed, Oct 20, 2010 at 09:17, Andrea Antonio Maleci > wrote: > Is it possible to checkout only files (not patch, but entire files) > from a specific revision ? > > From: Andy Levy [mailto:andy.l...@gmail.com] > Yes, use the --revision option for svn co. > > "Andrea Antonio Maleci" wrote

Re: Managing modifications to an open source product

2010-10-14 Thread Geoff Hoffman
Dan, This isn't that much help but are you aware that svn export is exactly the same as svn checkout & run a script to delete all the .svn folders ...? The problem with stripping .svn from vendor checkout is then you cannot update it; you're forced to export the whole tree every time. The met

Re: Two trunks in one repository?

2010-09-09 Thread Geoff Hoffman
ojectD gets the update at next svn up. - Original Message - From: "Tech Geek" To: "Erik Andersson" Cc: "Geoff Hoffman" , users@subversion.apache.org Sent: Thursday, September 9, 2010 1:23:27 PM Subject: Re: Two trunks in one repository? I am thinking somethin

Re: Two trunks in one repository?

2010-09-09 Thread Geoff Hoffman
We have hundreds of trees, each with their own trunk/ branches/ tags/ in one SVN repo. Works great. You may want to look at svn:externals. It may require re-thinking how you're using SVN a bit, but the payoff can be big. Basically you branch or tag anything shared, and load it into ProjectD usi

  1   2   >