I have a svn branch, say feature
, created from trunk
. I am ready to merge my feature
branch into trunk
, so I did this:
cd trunk/
svn merge <path/to/feature/branch>
After doing this, I am not ready to commit/push the changes to trunk yet. BUT I want to keep this "merged-but-not-committed" trunk working copy updated.
So will doing the following cause any issues:
cd trunk/
svn update