Is there a command to list SVN conflicts?
Solution 1:
On Linux, if you want to see only the conflicts, pipe the status through grep.
svn status | grep -P '^(?=.{0,6}C)'
Solution 2:
Just use grep!
svn st | grep '^C'
On Linux, if you want to see only the conflicts, pipe the status through grep.
svn status | grep -P '^(?=.{0,6}C)'
Just use grep!
svn st | grep '^C'