Sunday, 15 April 2012

svn - How do I ignore files in Subversion? -



svn - How do I ignore files in Subversion? -

how ignore files in subversion?

also, how find files not under version control?

to ignore files ending .jpg use:

svn propset svn:ignore "*.jpg" .

if want ignore multiple files or folders use:

svn propedit svn:ignore .

this bring text editor can come in list of files or directories ignore.

to find files not under version control:

svn status | awk '/^?/{print $2}'

see svn cheat sheet more tips.

p.s. i've answered myself future reference.

svn command

No comments:

Post a Comment