From users-return-69-daniel=haxx.se@subversion.apache.org Thu Dec 17 15:49:16 2009 Return-Path: Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by giant.haxx.se (8.14.3/8.14.3/Debian-9) with SMTP id nBHEnFtE018548 for ; Thu, 17 Dec 2009 15:49:15 +0100 Received: (qmail 59858 invoked by uid 500); 17 Dec 2009 14:49:10 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 59850 invoked by uid 99); 17 Dec 2009 14:49:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2009 14:49:10 +0000 X-ASF-Spam-Status: No, hits=-2.9 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [207.54.49.24] (HELO ussmtpp1.infor.com) (207.54.49.24) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2009 14:49:08 +0000 X-SBRS: None Received: from unknown (HELO usalwexcaht2.infor.com) ([10.38.32.6]) by smtp-relay.infor.com with ESMTP; 17 Dec 2009 09:48:46 -0500 Received: from USALWEXMB4.infor.com ([fe80::b4d3:3520:8e62:8774]) by usalwexcaht2 ([10.38.32.6]) with mapi; Thu, 17 Dec 2009 09:48:42 -0500 From: Bob Archer To: David Burleson , Ryan Schmidt CC: "users@subversion.apache.org" Date: Thu, 17 Dec 2009 09:48:39 -0500 Subject: RE: Ideal Subversion Setup Thread-Topic: Ideal Subversion Setup Thread-Index: Acp+/vCVT1tw7EtHQyKBQPFbxZjqAAAKDHig Message-ID: References: <4B290429.8090706@ephotozine.com> <40AAACFF-BE17-44B7-8513-319B851E53CF@ryandesign.com> <4B29FFA9.4070800@ephotozine.com> In-Reply-To: <4B29FFA9.4070800@ephotozine.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 > Thanks for the reply. So there might be some hope. >=20 > Let me elaborate on our setup. I've decided the first thing to do > is to > cut out the inbetween step of dragging files over. So I have setup > a > folder on our local linux webserver and setup apache web server to > use > it as a virtual host (to do testing). This works great. Now I need > to > sort out the symlinks for the images directory. We create the > symlinks > manually through command line (ssh). We are using TortoiseSVN as a > way > to create the checkout to be used on our Windows computers. So.... >=20 > 1. Linux Server: create a directory for development area > 2. Linux Server: setup apache to use the newly created directory as > a > virtual host > 3. Windows PC: Browse to the newly created directory via the > network > 4. Windows PC: Right click on the directory and select SVNcheckout > and > checkout the repository > 5. Linux Server: Create a symlink in the directory to another > directory > on the linux server Why don't you do step 3/4/5 all on the linux server. You will of course hav= e to use the svn cli via and ssh to the linux server. So your steps would b= e something like: 1. Linux Server: create a directory for development area by using svn co ^/= path/to/proj directoryname 2. Linux Server: setup apache to use the newly created directory as a virtu= al host 3. Linux Server: Create a symlink in the directory to another directory on = the linux server 4. Commit the symlink. I assume this will only need to be done once since t= he same symlink will work for everyone right? Once you do that you can use Windows tools over the network if you want. Yo= u will of course need tools that support linux line endings and watch your = case. Or perhaps even better would be for you devs to use linux either nati= vly or in VMs on the Windows host machines. BOb