Re: [OPW] Introducing the 2013 Apache Subversion Intern

2013-02-14 Thread Gabriela Gibson

On 31/01/13 12:54, Nico Kadel-Garcia wrote:

On Thu, Jan 31, 2013 at 7:24 AM, Gabriela Gibson
gabriela.gib...@gmail.com wrote:

Hi everyone,

I am the current Gnome Outreach Program for Women intern for the
Apache Subversion project, sponsored by Elego, Berlin, Germany.

OPW is a GNOME Woman initiative that aims to inspire women to
contribute to Free Software projects.


Wonderful: my female friends in computing, including my wife, have
sometimes found it difficult.


I have just the thing for you for Valentines' day then :)

Take a look here:

http://gabriela-gibson.blogspot.co.uk/2013/02/couples-who-code-together-stay-together.html

and pass the tip along (everyone should know about this trick
anyway!)

have a great Valentines' day everyone!

Gabriela



Re: Discrepancies in svn mirror created with svnsync

2013-02-14 Thread Daniel Shahaf
Marius Gedminas wrote on Thu, Feb 14, 2013 at 08:28:22 +0200:
 On Wed, Feb 13, 2013 at 08:32:35PM +, Philip Martin wrote:
  Stefan Sperling s...@elego.de writes:
  
   It is possible that authz rules prohibit access to the path affected
   by the revision. In which case svnsync would silently omit that path.
  
  $ svn log -vqr129027 svn://svn.zope.org/repos/main/
  
  r129027 | (no author) | (no date)
  
  
  That looks like a revision filtered by authz.
 
 I guess I'll have to patch svn-all-fast-export not to segfault when it
 encounters such empty revisions.  (Unfortunately attempting to exclude
 them by revision number is not enough.)
 

+1.  In general you cannot assume that any revprops will be present,
that any paths will have been changed, or that any path recorded as
changed has a different text or properties hash before v. after the
revision.

 Marius Gedminas
 -- 
 I never got into Linux. I swear to God, it's only lack of time. I'm past the
 years of my life where I can really dig into something like running a Linux
 system. I'm very sympathetic to the whole idea; Linux people always think the
 way I want to think.
 -- Steve Wozniak




svn copy and history - quick question

2013-02-14 Thread Z W
Hi All

We are SVN newbies here.
We plan to do an svn copy (of a branch to another trunk).
Does svn copy command copies all the history of the file and folder
revisoins too ?

Thanks


Re: svn copy and history - quick question

2013-02-14 Thread C M
As a SVN newbie myself, I suggest you set up a SVN sandbox and try out the
basic functionality within it.

You will get a better understanding of how SVN works by trying out various
commands.

Regards.
Amad

On Thu, Feb 14, 2013 at 1:58 PM, Z W mpc8...@gmail.com wrote:

 Hi All

 We are SVN newbies here.
 We plan to do an svn copy (of a branch to another trunk).
 Does svn copy command copies all the history of the file and folder
 revisoins too ?

 Thanks



Re: svn copy and history - quick question

2013-02-14 Thread C. Michael Pilato
On 02/14/2013 02:58 PM, Z W wrote:
 Hi All
 
 We are SVN newbies here.
 We plan to do an svn copy (of a branch to another trunk).
 Does svn copy command copies all the history of the file and folder
 revisoins too ?

I'm going to hesitantly say yes here.  Yes, if you copy a directory the
result will contain all the same stuff that the original had.  Yes, it will
have essentially the same history as the original.

But perhaps it's best not to think about 'svn copy' copying history --
depending on how you interpret those works, that might imply a situation in
which all the changes associated with the copied item are being duplicated,
as if they've been made all over again.  Rather, what happens is that 'svn
copy' creates a single new version of an existing versioned file or
directory as a continuation of the history of the original object, just at a
different location and without discontinuing the life of the object at its
original location.

It may help to visualize it as a fork in the road of the copied object's
historical path.  Naturally, such a fork will look exactly like the original
at first -- same content (for files), same children (for directories), same
revision log of changes, etc.  After all, every change made thus far in the
history of that object is common to both sides of that fork.  But from that
point on, the copied object is free to diverge historically from the original.


-- 
C. Michael Pilato cmpil...@collab.net
CollabNet  www.collab.net  Enterprise Cloud Development



signature.asc
Description: OpenPGP digital signature


RE: svn copy and history - quick question

2013-02-14 Thread Bob Archer
 Hi All
 
 We are SVN newbies here.
 We plan to do an svn copy (of a branch to another trunk).
 Does svn copy command copies all the history of the file and folder 
 revisoins
 too ?
 
 Thanks

The simple answer is... yes. 

BOb