SVN commit failed: 'xxx' is not under version control
svn commit -m `cat /tmp/sometext`
报错commit failed: 'xxx' is not under version control
原来是shell命令外面忘记加引号了。。。
svn commit -m "`cat /tmp/sometext`"
顺利提交
svn commit -m `cat /tmp/sometext`
报错commit failed: 'xxx' is not under version control
原来是shell命令外面忘记加引号了。。。
svn commit -m "`cat /tmp/sometext`"
顺利提交