小编典典

从SVN资料库删除文件夹

linux

有时我会在使用svn时出错,并将文件夹卡在我的存储库中。我想删除这些文件夹,但是我找不到解决方法。请记住,我对SVN非常陌生。我从苹果终端运行此命令:

sudo svn delete http://www.yourrepository.com/svn/folder

我收到消息:

Anthony-Work-Mac-Pro:htdocs APN$ sudo svn delete http://www.yourrepository.com/svn/folder
svn: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options

我也试过svn delete,和svn rm

我需要做什么?


阅读 273

收藏
2020-06-03

共1个答案

小编典典

看起来是必需的提交消息,并且您没有将系统配置为启动要添加一个编辑器的编辑器(未在命令行上指定)。

尝试这个:

svn delete http://www.yourrepository.com/svn/folder --message "Deleting"
2020-06-03