Re: Merge trunk and prod directories without workspace

2015-03-23 Thread Lathan Bidwell
On Sat, Mar 21, 2015 at 7:07 PM, Les Mikesell wrote: > On Fri, Mar 20, 2015 at 9:14 AM, Lathan Bidwell > wrote: > > > >> >> file trunk rev prod rev > >> >> /a/b/c50004850incoming update > >> >> /1/2/32000 2001 up to date > >> >> /x/y/z90007438

Re: Merge trunk and prod directories without workspace

2015-03-21 Thread Les Mikesell
On Fri, Mar 20, 2015 at 9:14 AM, Lathan Bidwell wrote: > >> >> file trunk rev prod rev >> >> /a/b/c50004850incoming update >> >> /1/2/32000 2001 up to date >> >> /x/y/z90007438incoming update >> >> /x/y/z/index.html 8000 8001up to dat

Re: Merge trunk and prod directories without workspace

2015-03-20 Thread Lathan Bidwell
On Tue, Mar 17, 2015 at 10:58 PM, Les Mikesell wrote: > On Tue, Mar 17, 2015 at 9:45 PM, Les Mikesell > wrote: > > Sorry - accidentally sent before finished... > > > On Tue, Mar 17, 2015 at 8:21 AM, Lathan Bidwell > wrote: > >> > >>> > >> Also, these publishes are not like putting out a full re

Re: Merge trunk and prod directories without workspace

2015-03-17 Thread Les Mikesell
On Tue, Mar 17, 2015 at 9:45 PM, Les Mikesell wrote: Sorry - accidentally sent before finished... > On Tue, Mar 17, 2015 at 8:21 AM, Lathan Bidwell wrote: >> >>> >> Also, these publishes are not like putting out a full release of a software >> package. The entire branch is a website for a unive

Re: Merge trunk and prod directories without workspace

2015-03-17 Thread Les Mikesell
On Tue, Mar 17, 2015 at 8:21 AM, Lathan Bidwell wrote: > >> > Also, these publishes are not like putting out a full release of a software > package. The entire branch is a website for a university. We never publish > everything at the same time. So, I'm not sure how I could implement a useful > TA

Re: Merge trunk and prod directories without workspace

2015-03-17 Thread Lathan Bidwell
On Mon, Mar 16, 2015 at 5:49 PM, Les Mikesell wrote: > On Mon, Mar 16, 2015 at 4:33 PM, Lathan Bidwell > wrote: > > > >> > >> I usually think in revision numbers or tag names instead of pretending > >> there was only one. If, instead of tracking HEAD, you copied each > >> release to a new TAG wi

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Les Mikesell
On Mon, Mar 16, 2015 at 4:33 PM, Lathan Bidwell wrote: > >> >> I usually think in revision numbers or tag names instead of pretending >> there was only one. If, instead of tracking HEAD, you copied each >> release to a new TAG with your own naming scheme you could just switch >> your production wo

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Lathan Bidwell
On Mon, Mar 16, 2015 at 5:24 PM, Les Mikesell wrote: > On Mon, Mar 16, 2015 at 4:04 PM, Lathan Bidwell > wrote: > > > >> > >> Don't you really want to just 'svn switch' your production workspace > >> to the new production target url instead of deleting and checking out > >> again? As long as th

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Les Mikesell
On Mon, Mar 16, 2015 at 4:04 PM, Lathan Bidwell wrote: > >> >> Don't you really want to just 'svn switch' your production workspace >> to the new production target url instead of deleting and checking out >> again? As long as the content shares ancestry it should just move the >> differences. >>

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Lathan Bidwell
On Mon, Mar 16, 2015 at 5:15 PM, wrote: > > On Mar 16, 2015, at 2:04 PM, Lathan Bidwell wrote: > > > > On Mon, Mar 16, 2015 at 4:44 PM, Les Mikesell > wrote: > >> On Mon, Mar 16, 2015 at 3:16 PM, Lathan Bidwell >> wrote: >> > >> >> >> >> > I have a content management system running on top of S

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread jblist
> On Mar 16, 2015, at 2:04 PM, Lathan Bidwell wrote: > > > > On Mon, Mar 16, 2015 at 4:44 PM, Les Mikesell > wrote: > On Mon, Mar 16, 2015 at 3:16 PM, Lathan Bidwell > wrote: > > > >> > >> > I have a content management system running o

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Lathan Bidwell
On Mon, Mar 16, 2015 at 4:44 PM, Les Mikesell wrote: > On Mon, Mar 16, 2015 at 3:16 PM, Lathan Bidwell > wrote: > > > >> > >> > I have a content management system running on top of SVN. My web > servers > >> > run a post commit hook that does svn update off of svnlook after every > >> > commit.

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Les Mikesell
On Mon, Mar 16, 2015 at 3:16 PM, Lathan Bidwell wrote: > >> >> > I have a content management system running on top of SVN. My web servers >> > run a post commit hook that does svn update off of svnlook after every >> > commit. >> > >> > I currently have a "Publish" operation which I implement by d

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Lathan Bidwell
On Mon, Mar 16, 2015 at 3:15 PM, Ryan Schmidt < subversion-2...@ryandesign.com> wrote: > > On Mar 16, 2015, at 8:19 AM, Lathan Bidwell wrote: > > > I have a content management system running on top of SVN. My web servers > run a post commit hook that does svn update off of svnlook after every > co

Re: Merge trunk and prod directories without workspace

2015-03-16 Thread Ryan Schmidt
On Mar 16, 2015, at 8:19 AM, Lathan Bidwell wrote: > I have a content management system running on top of SVN. My web servers run > a post commit hook that does svn update off of svnlook after every commit. > > I currently have a "Publish" operation which I implement by doing svn delete > $pro

Merge trunk and prod directories without workspace

2015-03-16 Thread Lathan Bidwell
Hi, I have a content management system running on top of SVN. My web servers run a post commit hook that does svn update off of svnlook after every commit. I currently have a "Publish" operation which I implement by doing svn delete $prod_url && svn cp $trunk_url $prod_url. (both repo urls) This