如何从 CLI 提交 svn propset?

How to commit an svn propset from the CLI?

我在项目中使用 SVN(不要问),在创建 .svnignore 文件后,我已经告诉 SVN 了:

svn propset svn:ignore -F .svnignore .

但是现在如何从 CLI 提交该 propset?

您必须阅读有关 svn properties 的 SVN 书籍,了解 svn ps(以任何形式)只需在您的 WC 中更改 某些内容,因此,如果你想从刚刚提交的修改后的 WC 中保存这些新属性(检查 svn st 输出)。

通过命令扩展

svn ps 之后,您的卫生间会有一些变化,通过 svn st, which you have to commit into repository as any other changes with svn ci -m "<SOME DESCRIPTIVE COMMIT MESSAGE>"

很容易发现