XCode:SVN 中提交失败:设备上没有剩余空间
嗨,
我正在使用 XCode 在 SVN 中提交我的项目。我成功地做到了好几个月。但今天突然在提交时出现以下错误:
工作副本“类”未能提交文件。
svn:提交失败(详细信息如下) svn:无法打开“/usr/local/repos/Iphone/my_svn_repo/db/tempfile.tmp”:设备上没有剩余空间
这是 svn 端还是我正在使用的 Iphone 中的内存问题?如何避免呢?
谢谢
Hi,
I am committing my project in SVN using XCode. I do it successfully for quite a few months. But suddenly today, while committing, it is showing the following error :
The working copy "Classes" failed to commit files.
svn: Commit failed (details below)
svn: Can't open '/usr/local/repos/Iphone/my_svn_repo/db/tempfile.tmp' : No space left on device
Is it a memory issue on the svn side or in the Iphone I am using ? How to avoid it ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的本地磁盘或 svn 服务器磁盘
/usr
分区已满。这会阻止 svn 命令创建必要的临时文件,因此提交失败。设备上没有剩余空间
指的是/dev/hda1
处的系统设备(硬盘驱动器 - 不是 iOS 设备)(或任何/dev/[hs] d[abcd..][1-..]
)。在
/usr
上运行df
和mv
文件以清理本地磁盘或 svn 服务器上的空间,然后运行 svn ci ...
再次。Either your local disk or svn servers disk
/usr
partition is full. This prevents the svn command from creating a necessary temp file, therefore the commit fails.No space left on device
is refering to the system device (hard drive - not iOS device) at/dev/hda1
(or whichever/dev/[hs]d[abcd..][1-..]
).Run
df
andmv
files off/usr
to clean out space on either your local disk or the svn server and run thesvn ci ...
again.我也面临这个问题。使用 df -h 我发现我们保存存储库的已安装服务器之一已满。我清理了该服务器上的空间,它又可以工作了。希望这有帮助。
I also faced this problem. Using df -h I found that one of the mounted servers where we keep the repositories was full. I cleaned up space on this server and it was working again. Hope this helps.