Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我可以设置一个带有颠覆的排除列表,但是可以做一个包含列表吗?
我正在尝试将财务数据集添加到版本控制中,以仅跟踪特定类型文件的更改。由于用户可以将任何类型的文件添加到数据集中,因此无法创建排除列表。
有任何想法吗?
svn st | grep extension | sed -En 's/^(M|A)[ ]+(.+)/\2/p' > targets.txt
然后
svn commit --targets targets.txt
rm targets.txt
编写一个 bash 脚本以将扩展名作为参数也很容易。