Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Set up an ignores file in this directory
- svn propedit svn:ignore .
- # Copy the svnignores.txt file into the svn:ignores information for this directory
- # and all contained directories recursively
- svn -R propset svn:ignore -F svnignores.txt .
- #example svnignores.txt
- *.ipr
- *.iml
- *.iws
- test-output
- target
- build
- .*
- #branch creation
- svn cp -m "XYZ-123 branch for abc" svn+ssh://user@host/path/to/trunk/dir svn+ssh://user@host/path/to/branches/mybranch-123-abc
- svn cp -m "#XYZ branch for xyz" https://subversion.whatever.com/svn/blah/trunk/dir https://subversion.whatever.com/svn/blah/branches/xyz-whatever
- #create patch
- svn diff -r 100:200 > diff_100_200.patch
Advertisement
Add Comment
Please, Sign In to add comment