作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我正在处理的当前项目中,有人决定将二进制文件作为源树的一部分 checkin 。二进制文件位于源代码下方的目录中:
project/src # Here is the location of the source code
project/src/more_src # Some more source code lives here
project/src/bin # Here are the binary files
bin
目录,以便当我使用
svn st
和
svn ci
跳过这些目录(即使有待处理的更改)。
more_src
,我不能使用 -N(非递归)目录。
最佳答案
编辑 : subversion 1.6 已经发布。从发行说明:
In Subversion 1.6, the --set-depth parameter to svn update has grown a new value—exclude. This value tells Subversion to exclude the target from the working copy, immediately and until further notice. Prior to Subversion 1.6, if a directory could not easily be removed from a working copy. ...
svn co --depth immediates repoURL /some/wc/path
svn update --depth infinity /some/good/path
svn update --depth immediates /some/path/to/make/deeper
svn update --depth empty /path/where/deleted/folder/was
关于svn - 如何在提交期间忽略特定的 Subversion 子目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/588024/
我是一名优秀的程序员,十分优秀!