RE: Branching/Merging Strategy

2012-02-20 Thread John Maher
Yes it was helpful. Thanks. -Original Message- From: Varnau, Steve (Seaquest R&D) [mailto:steve.var...@hp.com] Sent: Monday, February 20, 2012 12:40 PM To: John Maher Cc: users@subversion.apache.org Subject: RE: Branching/Merging Strategy > -Original Message- > From: John Maher

RE: Branching/Merging Strategy

2012-02-20 Thread
> -Original Message- > From: John Maher [mailto:jo...@rotair.com] > Sent: Monday, February 20, 2012 5:37 AM > To: Varnau, Steve (Seaquest R&D) > Subject: RE: Branching/Merging Strategy > > > Hello > > I'm new to subversion and have two questions. > > 1) How do I properly make a post?

Re: Keep separate checkouts up to date

2012-02-20 Thread Les Mikesell
On Mon, Feb 20, 2012 at 8:31 AM, Ulrich Eckhardt < ulrich.eckha...@dominolaser.com> wrote: > I'd generally update regularly, more than once a day even. However, when > I'm in the middle of working on something, I don't want other people's > changes to come in, so I defer updating. Before committi

Re: Problem getting new external into my working copy

2012-02-20 Thread Stefan Sperling
On Mon, Feb 20, 2012 at 02:49:54PM +0100, Michael Hartmeier wrote: > Hi, > > I have a working copy that only contains svn:externals, no "normal" > files or directories: > >$ svn propget svn:externals . >shop https://svn.schlund.de/shop/trunk >popups https://svn.schlund.de/popups/trunk

Re: Problem getting new external into my working copy

2012-02-20 Thread Philip Martin
That might be considered a bug. I think you have to run update to get the new external. If the other externals are single revision then you could define that revision explicitly in svn:externals. Then you could run update and those externals would not change. You could even make the svn:externa

Re: Problem getting new external into my working copy

2012-02-20 Thread Michael Hartmeier
Yes: they both have no effect :( Michael Am 20.02.2012 15:35, schrieb Daniel Shahaf: Instead of svn checkout tuneup have you tried svn up --depth empty or svn up tuneup ? Michael Hartmeier wrote on Mon, Feb 20, 2012 at 14:49:54 +0100: Hi, I have a working copy that only contai

Re: Problem getting new external into my working copy

2012-02-20 Thread Daniel Shahaf
Instead of svn checkout tuneup have you tried svn up --depth empty or svn up tuneup ? Michael Hartmeier wrote on Mon, Feb 20, 2012 at 14:49:54 +0100: > Hi, > > I have a working copy that only contains svn:externals, no "normal" > files or directories: > >$ svn propget svn:extern

Re: Keep separate checkouts up to date

2012-02-20 Thread Ulrich Eckhardt
Am 20.02.2012 03:07, schrieb John Leonard: So one strategy would be, say, to perform an update at the beginning of a workday at each workstation and then commit at the end of work? I'd generally update regularly, more than once a day even. However, when I'm in the middle of working on somethin

Re: Problem getting new external into my working copy

2012-02-20 Thread Michael Hartmeier
Unfortunatly, a global "svn up" is not an option: I'd also get updates for the existing svn externals that I don't want. Michael Am 20.02.2012 15:24, schrieb Johan Corveleyn: On Mon, Feb 20, 2012 at 2:49 PM, Michael Hartmeier wrote: Hi, I have a working copy that only contains svn:externals

Re: Problem getting new external into my working copy

2012-02-20 Thread Johan Corveleyn
On Mon, Feb 20, 2012 at 2:49 PM, Michael Hartmeier wrote: > Hi, > > I have a working copy that only contains svn:externals, no "normal" files or > directories: > >   $ svn propget svn:externals . >   shop https://svn.schlund.de/shop/trunk >   popups https://svn.schlund.de/popups/trunk/ > > How can

Problem getting new external into my working copy

2012-02-20 Thread Michael Hartmeier
Hi, I have a working copy that only contains svn:externals, no "normal" files or directories: $ svn propget svn:externals . shop https://svn.schlund.de/shop/trunk popups https://svn.schlund.de/popups/trunk/ How can I add a new external without updating the whole working copy? What w