Last active
August 29, 2015 14:07
-
-
Save asifmujteba/4f2b05896968cf0cb836 to your computer and use it in GitHub Desktop.
svn scripts for quick viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Creating branch | |
svn copy project/trunk project/branches/new-branch -m "Creating a new branch of project/trunk" | |
# Deleting branch | |
cd project/branhces | |
svn rm new-branch/ | |
svn commit -m "Deleting obsolete branch" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment