gpt4 book ai didi

svn - 使用 powershell 和 svn 删除未版本控制的文件

转载 作者:行者123 更新时间:2023-12-04 18:20:05 24 4
gpt4 key购买 nike

我正在尝试编写构建脚本以使用 Powershell check out 代码。我需要能够用 SVN 存储库中的适当更改替换对工作副本所做的任何修改。这还包括删除在 repo 中删除但在工作副本中未删除的任何文件。

不幸的是,我无法进行干净的 checkout ,因为每次运行构建脚本时都 checkout 所有 10GB 的代码效率很低。我该怎么做?

我一直在尝试以下方法:

&$SVN_EXE revert $workingPath
&$SVN_EXE update $workingPath
$x = &$SVN_EXE status $localPath --no-ignore | where {$_ -match "^[\?I]"} | %{$_ -replace "^[\?I]",""} # get the status, get any items with a ? and strip them out
$x | %{$_ -replace "[`n]",", "} # Replace newlines with commas
Remove-Item $x # Remove all the unversioned items

我似乎无法将第 3 行的输出存储到 $x 中,而且我不太确定其余部分是否是这样做的方式。

我不确定这是否是正确的方法,但如果是,我似乎无法存储和解析 SVN 状态的输出。

有人有什么建议吗?谢谢!

最佳答案

如果你想从你的工作目录中删除未跟踪和忽略的文件,尝试这样的事情:

svn st --no-ignore | %{ if($_ -match '^[?I]\s+(.+)'){ $matches[1]} } | rm -whatif

一旦您确认-whatif 正在执行您希望它执行的操作,请删除它。

关于svn - 使用 powershell 和 svn 删除未版本控制的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9082706/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com