Add all unversioned (except ignored) to commit


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. svn status -u | grep "?" | awk '{print $2}' | while read i ; do svn add "$i" ; done

Report this snippet


Comments


You need to login to view comments.