我希望能够使用 Windows PowerShell 命令
Get-ChildItem -include .git -Force -Recurse | ?{ $_.PSIsContainer -and $_.Attributes -match "Hidden"}
并git status
为找到的每个“记录”执行并将其输出到文本文件。
这样我就可以报告我的不同步更改。
有没有办法做到这一点?
我希望能够使用 Windows PowerShell 命令
Get-ChildItem -include .git -Force -Recurse | ?{ $_.PSIsContainer -and $_.Attributes -match "Hidden"}
并git status
为找到的每个“记录”执行并将其输出到文本文件。
这样我就可以报告我的不同步更改。
有没有办法做到这一点?