//View Tip #562
» Change prompt color dynamically
» Get latest stable version of the Linux kernel
» ssh proxy forwarding
» Kill matching processes
автоцентр
Similar Tips
» Check a bash script without executing» Change prompt color dynamically
» Get latest stable version of the Linux kernel
» ssh proxy forwarding
» Kill matching processes
Latest tips by RSS
Click here to subscribe
Follow Shell-Fu on Twitter
Click here to follow
Follow Shell-Fu on identi.ca
Click here to follow
Sometimes, you want to add a lot of files to SVN from the command line. This simple command will find all unversioned files in an SVN checkout and adds them to SVN versioning.
for i in `svn status | awk '{if ($1 == "?") print $2}'`; do svn add $i; doneComments
Add your comment
#1
svn add * --force
Posted 2009-03-16 15:07:06

