2

Say I create a branch of folder Master in my repository and make some commits to it.

I used TortoiseSVN's Create Branch command, which executes: svn copy FROMURL TOURL to create the branch on the server using the HEAD revision.

Later, the SVN administrator deletes the Master folder, but leaves my branch alone.

Since SVN branches are shallow copies, is my branch now corrupt, or does SVN smartly make a deep copy at the deletion of Master?

Nick Udell
  • 159
  • 1
  • 4
  • 18

1 Answers1

3

Branch has a reference to a specific revision. Your branch should be safe. SVN uses references most of the time.

dr4cul4
  • 75
  • 2
  • 7