将 Icon@2x.png 添加到 SVN

发布于 2024-11-09 09:41:50 字数 230 浏览 0 评论 0原文

我试图将视网膜图标添加到 SVN,但似乎无法将其签入。

我尝试过 svn add [电子邮件受保护] svn 添加图标\@2x.png 但它们都不起作用。

任何帮助将不胜感激。

谢谢 RS

I was trying add the retina icon to SVN but seem to have trouble checking it in.

I tried
svn add [email protected]
svn add Icon\@2x.png
but neither of them works.

Any help will be appreciated.

Thanks
RS

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

飘逸的'云 2024-11-16 09:41:50

你需要这样做...

svn add [email protected]@

You need to do this ...

svn add [email protected]@
小忆控 2024-11-16 09:41:50

不管你如何转义“@”符号,发生这种情况的原因是因为 SVN 认为最后一个“@”是指定修订号(@REV 格式)。要解决这个问题,您需要在文件名末尾添加另一个“@”符号。

svn add [email protected]@

如果您需要添加多个文件,手动输入所有文件可能会很麻烦,但您可以使用 xargs 来自动执行此操作:

ls *2x.png | xargs -I x svn add x@

It doesn't matter how you escape the '@' symbol, the reason this happens is because SVN thinks the last '@' is to specify a revision number (@REV format). To get around it you need to put another '@' symbol at the end of the file-name.

svn add [email protected]@

If you need to add multiple files it can be a pain to type them all in manually, but you can use xargs to automate this:

ls *2x.png | xargs -I x svn add x@
眼藏柔 2024-11-16 09:41:50

让它递归不是更好吗? (只是对之前答案的建议/更新)

 find . -name "*2x.png" |xargs -I x svn add x@

wouldn't be better to make it recursive? (Just suggestion for / update of previous answer)

 find . -name "*2x.png" |xargs -I x svn add x@
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文