For example:
- I create a branch named refactor.
- I reintegrate the branch to the trunk.
- I delete the branch.
Is it safe to repeat the process with another branch named refactor?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
With SVN the only problem you might run into is that when merging the
mergeinfoproperty of the merge point (folder or file depending on the level where the merge was made) will contain the branch name and revision numbers of previous merges. I don’t think that SVN actually uses this information when merging, but it becomes confusing sometimes as a user.If you don’t care about this then it should work fine … but I know in previous projects we used
mergeinfoas an indication of what branches we had merged back into trunk, so re-using a branch name would be dangerous.