Is there any way to commit only a list of specific files (e.q. just one of the list of files that SVN wants to commit).
I\'m working on MAC OS X under Terminal, without
try this script..
#!/bin/bash NULL="_" for f in `svn st|grep -v ^\?|sed s/.\ *//`; do LIST="${LIST} $f $NULL on"; done dialog --checklist "Select files to commit" 30 60 30 $LIST 2>/tmp/svnlist.txt svn ci `cat /tmp/svnlist.txt|sed 's/"//g'`