Skip to content

Instantly share code, notes, and snippets.

@zhaocnus
Created October 14, 2016 18:23
Show Gist options
  • Select an option

  • Save zhaocnus/03ca438fd04aabb4ae9e068a62c4e80c to your computer and use it in GitHub Desktop.

Select an option

Save zhaocnus/03ca438fd04aabb4ae9e068a62c4e80c to your computer and use it in GitHub Desktop.
svn commands
# 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