Skip to content

Instantly share code, notes, and snippets.

@lausdahl
Last active September 13, 2021 15:51
Show Gist options
  • Save lausdahl/afea1db7738a36abf37f to your computer and use it in GitHub Desktop.
Save lausdahl/afea1db7738a36abf37f to your computer and use it in GitHub Desktop.
SVN ignore

SVN ignore

How to set SVN ignore like git .gitignore

First make a .svnignore file

bin 
gen
proguard 
.classpath 
.project 
local.properties 
Thumbs.db 
*.apk 
*.ap_ 
*.class 
*.dex

and run:

svn propset svn:ignore -R -F .svnignore .

Edit

if if already present then just edit it by:

svn propedit svn:ignore .
@BenjiFTL
Copy link

Amazing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment