RSS
 

Recursively add new files to svn repository

15 Sep

It very hard to add newly created files one-by-one to the repository specially if you don’t know exactly what you added.
This terminal combination of command allow the recursive new files adding .

 svn status | grep "^\?" | sed -e 's/? *//' | sed -e 's/ /\\ /g' | xargs svn add
 
No Comments

Posted in Ubuntu

 

Leave a Reply