Create a Tag and Merge with a branch SVN

Developer

On my production i have this latest branch "PROD_BRANCH_URL". For a change i created a branch “NEW_BRANCH_URL” in which i do not have the changes of above branch. Now the issue is new branch does not contain the changes of the latest branch that is in the Production.

I want to create a tag from trunk and then merge changes from NEW_BRANCH_URL to the new tag.

bahrep

First of all, read the documentation on merging: SVNBook | Basic Merging. And you haven't really described what's your task and what questions you have.

For a change i created a branch “NEW_BRANCH_URL” in which i do not have the changes of above branch. Now the issue is new branch does not contain the changes of the latest branch that is in the Production.

So? Create a branch that contains the changes.

  1. Create a new branch out of PROD_BRANCH_URL as NEW_CORRECT_BRANCH.
  2. Sync the changes from the trunk or PROD_BRANCH_URL depending on your requirements to NEW_CORRECT_BRANCH.
  3. Make the changes to NEW_CORRECT_BRANCH.
  4. Merge it with the trunk or branch you have to merge.

I want to create a tag from trunk and then merge changes from NEW_BRANCH_URL to the new tag.

That's a wrong idea. You should merge the changes to trunk first. After the merge you should make a new tag. Don't commit to tags as you were planning to.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

svn to merge trunk into branch

From Dev

svn to merge trunk into branch

From Dev

How to merge SVN branch to trunk?

From Dev

SVN replace branch with another - NO merge

From Dev

SVN Branch To Trunk Merge Issue

From Dev

svn merge with renamed directory in branch

From Dev

merge svn feature branch to release branch

From Dev

Android Studio - unable to merge from SVN branch

From Dev

Tortoise SVN - Merge Trunk into Branch - Tree Conflict

From Dev

SVN Merge branch to trunk with ignored versioned files

From Dev

SVN - Merge working copy into another branch

From Dev

git svn create a new svn branch based on a git branch

From Dev

GIT SVN: fetching a recreated SVN branch without the wrong merge parent

From Dev

Git-svn: how to partially merge svn-branch in git

From Dev

Reintegrating from branch to trunk, then merge back into branch in SVN .. what happens?

From Dev

Svn can't merge a directory move operation from trunk to branch

From Dev

SVN 1.5 Branch Merge with Large Number of Unchanged Files Modified and/or Conflicted

From Dev

SVN automatic merge from trunk to branch by specifying JIRA ticket id

From Dev

Need to merge a git branch forcefully onto the master after svn import

From Java

How to create a new branch from a tag?

From Dev

Create git Branch/Tag via ANT script

From Dev

git - create a new branch from local copy and then merge it with existing branch

From Java

How do I merge a git tag onto a branch

From Dev

Create branch from existing branch's history and push to original branch without merge

From Dev

svn to git branch to branch syncing

From Dev

git merge remote branches without having to create a local branch

From Dev

Git -- merge master with branch and create new file from master that was renamed

From Dev

SVN 1.8 merge (branch reuse) seems broken when having local mergeinfo

From Dev

How do merge specific svn revisions from branch to trunk in Android Studio 2.0

Related Related

  1. 1

    svn to merge trunk into branch

  2. 2

    svn to merge trunk into branch

  3. 3

    How to merge SVN branch to trunk?

  4. 4

    SVN replace branch with another - NO merge

  5. 5

    SVN Branch To Trunk Merge Issue

  6. 6

    svn merge with renamed directory in branch

  7. 7

    merge svn feature branch to release branch

  8. 8

    Android Studio - unable to merge from SVN branch

  9. 9

    Tortoise SVN - Merge Trunk into Branch - Tree Conflict

  10. 10

    SVN Merge branch to trunk with ignored versioned files

  11. 11

    SVN - Merge working copy into another branch

  12. 12

    git svn create a new svn branch based on a git branch

  13. 13

    GIT SVN: fetching a recreated SVN branch without the wrong merge parent

  14. 14

    Git-svn: how to partially merge svn-branch in git

  15. 15

    Reintegrating from branch to trunk, then merge back into branch in SVN .. what happens?

  16. 16

    Svn can't merge a directory move operation from trunk to branch

  17. 17

    SVN 1.5 Branch Merge with Large Number of Unchanged Files Modified and/or Conflicted

  18. 18

    SVN automatic merge from trunk to branch by specifying JIRA ticket id

  19. 19

    Need to merge a git branch forcefully onto the master after svn import

  20. 20

    How to create a new branch from a tag?

  21. 21

    Create git Branch/Tag via ANT script

  22. 22

    git - create a new branch from local copy and then merge it with existing branch

  23. 23

    How do I merge a git tag onto a branch

  24. 24

    Create branch from existing branch's history and push to original branch without merge

  25. 25

    svn to git branch to branch syncing

  26. 26

    git merge remote branches without having to create a local branch

  27. 27

    Git -- merge master with branch and create new file from master that was renamed

  28. 28

    SVN 1.8 merge (branch reuse) seems broken when having local mergeinfo

  29. 29

    How do merge specific svn revisions from branch to trunk in Android Studio 2.0

HotTag

Archive