Unsubscribe

2013-02-23 Thread Anastasio, David M CTR USAF AFMC AFLCMC/HNID
Can someone tell me how I can get unsubscribed?

Thank you,



Re: Unsubscribe

2013-02-23 Thread Katherine Sheehan
Hi David,

To unsubscribe, send an email to list-unsubscr...@apache.org. Replace "list" 
with the name of the list you want to unsubscribe from. More details can be 
found here

 http://www.apache.org/foundation/mailinglists.html

Katherine :)

On 23 Feb 2013, at 13:46, "Anastasio, David M CTR USAF AFMC AFLCMC/HNID" 
 wrote:

> Can someone tell me how I can get unsubscribed?
> Thank you,


Re: Unsubscribe

2013-02-23 Thread Daniel Shahaf
We have http://subversion.apache.org/mailing-lists too with that
information.

Katherine Sheehan wrote on Sat, Feb 23, 2013 at 14:01:42 +:
> Hi David,
> 
> To unsubscribe, send an email to list-unsubscr...@apache.org. Replace "list" 
> with the name of the list you want to unsubscribe from. More details can be 
> found here
> 
>  http://www.apache.org/foundation/mailinglists.html
> 
> Katherine :)
> 
> On 23 Feb 2013, at 13:46, "Anastasio, David M CTR USAF AFMC AFLCMC/HNID" 
>  wrote:
> 
> > Can someone tell me how I can get unsubscribed?
> > Thank you,


Re: Merge, reintegrate, and merge with tree conflicts

2013-02-23 Thread James Hanley
So what is the proper way to continuously perform the workflow we're
trying to do - that is pull changes from origin path into branch, push
changes to origin branch from branch, and repeat.

Using bidirectional merge (without reintegrate) seems create severe
merge conflicts.

On Feb 22, 2013, at 7:22 PM, Matthew Pounsett  wrote:

>
> On 2013/02/22, at 14:15, James Hanley wrote:
>
>> We are seeing merge tree conflicts where I believe svn is not working
>> as expected.  I'm not entirely sure if this is due to a lack of
>> understanding for proper use on our part, but it was my understanding
>> that reintegrate was to be used when pulling changes from a branch and
>> pushing them into the copied from branch.
>
> I asked about this a couple of weeks ago[1] as well.  The explanation I 
> got[2] was that once you've done a --reintegrate, the source of that merge is 
> a dead branch, and cannot be used again.  You can demonstrate this much 
> simpler this way:
>
> cd branches
> svn cp ^/trunk ./mybranch
> cd mybranch
> mkdir foo
> svn add foo
> svn commit -m "added foo to mybranch"
> cd ../../trunk
> svn merge --reintegrate ^/branches/mybranch
> cd ../branches/mybranch
> svn merge ^/trunk
>
> As soon as the --reintegrate is done, ^/branches/mybranch is dead.
>
>
> [1] 
> 
> [2] 
>