Is there a way to tell parent branch in subversion? I have two branches BranchA and BranchB
I want to be able to tell their parent branch (from which branch was it originally copied).
Is there a way to tell parent branch in subversion? I have two branches
Share
You can see copy/merge/tag points via
svn log -v --stop-on-copy. The-vis verbose, showing which paths were changed and that is where you’ll see the copy from location and revision.--stop-on-copyis there to avoid walking past the most recent copy.