pristine svn-base file missing

前端 未结 7 1384
野趣味
野趣味 2021-02-07 00:43

I\'m trying to svn update my SVN working copy with TortoiseSVN but the update fails, asking to perform the clean up first.

However, the svn cleanup

7条回答
  •  遇见更好的自我
    2021-02-07 01:14

    This will do it too as a one-liner:

    while [ 1 ] ; do OUTPUT=`svn cleanup 2>&1 | sed 's/^.* open file //' | sed 's/:.*$//' | sed "s/'//g"`;if [ "X${OUTPUT}" == "X" ] ; then   break; fi; echo $OUTPUT;touch $OUTPUT;done
    

提交回复
热议问题