2

我希望能够使用 Windows PowerShell 命令

Get-ChildItem -include .git  -Force -Recurse | ?{ $_.PSIsContainer -and $_.Attributes -match "Hidden"}

git status为找到的每个“记录”执行并将其输出到文本文件。

这样我就可以报告我的不同步更改。

有没有办法做到这一点?

4

1 回答 1

2

最后,我将在我的配置文件中为此命令设置一个别名。

Get-ChildItem -include .git -Force -Recurse | ?{ $_.PSIsContainer -and $_.Attributes -match "Hidden"} | foreach-object {$a=Get-Location; cd $_.parent.fullname; Get-Location; git status; cd $a;}
于 2013-01-15T14:57:41.643 回答