Created
October 14, 2016 18:23
-
-
Save zhaocnus/03ca438fd04aabb4ae9e068a62c4e80c to your computer and use it in GitHub Desktop.
svn commands
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
| # delete all locally missing files | |
| svn st | grep ^! | awk '{print " --force "$2}' | xargs svn rm | |
| # add all unversioned files to SVN | |
| svn add --force * --auto-props --parents --depth infinity -q | |
| # edit a ignore list on this folder | |
| svn propedit svn:ignore . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment