从svn仓库中删除一个文件夹
我有时会犯svn错误,并有文件夹卡在我的资源库。 我想删除这些文件夹,但我想不出一种方法来做到这一点。 请记住,我对SVN非常新颖。 我从苹果terminal运行这个命令:
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
。
我需要做什么?
看起来像一个提交消息是必需的,你没有configuration你的系统启动一个编辑器为你添加一个(没有在命令行中指定)。
尝试这个:
svn delete http://www.yourrepository.com/svn/folder --message "Deleting"
为了避免将来出现类似的消息,可以在你的.bash_profile文件(或者类似的Mac上)中添加如export SVN_EDITOR="/usr/bin/vim"
)