Skip to content

Instantly share code, notes, and snippets.

@asifmujteba
Last active August 29, 2015 14:07
Show Gist options
  • Save asifmujteba/4f2b05896968cf0cb836 to your computer and use it in GitHub Desktop.
Save asifmujteba/4f2b05896968cf0cb836 to your computer and use it in GitHub Desktop.
svn scripts for quick viewing
# 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