如何忽略 Subversion 中的文件?
另外,如何找到不受版本控制的文件?
(此答案已更新以匹配 SVN 1.8 和 1.9 的行为)
你有2个问题:
“忽略文件”是指该文件即使“未版本化”也不会出现在列表中:您的 SVN 客户端将假装该文件在文件系统中根本不存在。
忽略的文件由“文件模式”指定。SVN 的在线文档中解释了文件模式的语法和格式:http: //svnbook.red- bean.com/nightly/en/svn.advanced.props.special.ignore.html “Subversion 中的文件模式”。
从 1.8 版(2013 年 6 月)及更高版本开始,Subversion 支持 3 种不同的方式来指定文件模式。以下是带有示例的摘要:
global-ignores
C:\Users\{you}\AppData\Roaming\Subversion\config
Software\Tigris.org\Subversion\Config\Miscellany\global-ignores
HKLM``HKCU
~/.subversion/config
svn:ignore
.gitignore
虽然 SVN 1.8 添加了“继承属性”的概念,但svn:ignore属性本身在非直接后代目录中被忽略:
cd ~/myRepoRoot # Open an existing repo.
echo “foo” > “ignoreThis.txt” # Create a file called “ignoreThis.txt”.
svn status # Check to see if the file is ignored or not.
? ./ignoreThis.txt 1 unversioned file # …it is NOT currently ignored.
svn propset svn:ignore “ignoreThis.txt” . # Apply the svn:ignore property to the “myRepoRoot” directory. svn status
0 unversioned files # …but now the file is ignored!
cd subdirectory # now open a subdirectory. echo “foo” > “ignoreThis.txt” # create another file named “ignoreThis.txt”.
svn status
? ./subdirectory/ignoreThis.txt # …and is is NOT ignored! 1 unversioned file
(因此文件./subdirectory/ignoreThis不会被忽略,即使 ” ignoreThis.txt” 应用于.repo 根目录)。
./subdirectory/ignoreThis
ignoreThis.txt
.
因此,要递归应用忽略列表,您必须使用svn propset svn:ignore <filePattern> . --recursive.
svn propset svn:ignore <filePattern> . --recursive
<filePattern>
--recursive
我注意到命令行语法是违反直觉的。
我开始假设您会通过键入类似的内容来忽略 SVN 中的文件,svn ignore pathToFileToIgnore.txt但这不是 SVN 的忽略功能的工作方式。
svn ignore pathToFileToIgnore.txt
svn:global-ignores
运行与上一个示例相同的命令集,但svn:global-ignores改用:
cd ~/myRepoRoot # Open an existing repo
echo “foo” > “ignoreThis.txt” # Create a file called “ignoreThis.txt” svn status # Check to see if the file is ignored or not
? ./ignoreThis.txt 1 unversioned file # …it is NOT currently ignored
svn propset svn:global-ignores “ignoreThis.txt” . svn status
cd subdirectory # now open a subdirectory echo “foo” > “ignoreThis.txt” # create another file named “ignoreThis.txt” svn status
0 unversioned files # the file is ignored here too!
这整个安排让我感到困惑,因为 TortoiseSVN 的术语(在他们的 Windows 资源管理器菜单系统中使用)最初对我有误导性 - 我不确定忽略菜单的“递归添加”、“添加 *”和“添加”的意义是什么选项。我希望这篇文章解释了忽略功能如何与 SVN 属性功能相关联。也就是说,我建议使用命令行来设置被忽略的文件,这样您就可以了解它是如何工作的,而不是使用 GUI,并且只有在您熟悉命令行之后才使用 GUI 来操作属性。
该命令svn status将隐藏被忽略的文件(即匹配 RGAglobal- ignores模式、匹配直接父目录svn:ignore模式或匹配任何前导目录svn:global-ignores模式的文件。
global- ignores
使用该--no-ignore选项查看列出的这些文件。忽略的文件的状态为I,然后将输出通过管道传输grep到仅显示以“I”开头的行。
--no-ignore
I
grep
命令是:
svn status --no-ignore | grep "^I"
例如:
svn status > ? foo # An unversioned file > M modifiedFile.txt # A versioned file that has been modified svn status --no-ignore > ? foo # An unversioned file > I ignoreThis.txt # A file matching an svn:ignore pattern > M modifiedFile.txt # A versioned file that has been modified svn status --no-ignore | grep "^I" > I ignoreThis.txt # A file matching an svn:ignore pattern
达达!