WindowsPowerShellコマンドを使用できるようにしたい
Get-ChildItem -include .git -Force -Recurse | ?{ $_.PSIsContainer -and $_.Attributes -match "Hidden"}
git status
見つかったすべての「レコード」に対して実行し、テキストファイルに出力します。
このようにして、非同期の変更のレポートを作成できます。
これを行う方法はありますか?
WindowsPowerShellコマンドを使用できるようにしたい
Get-ChildItem -include .git -Force -Recurse | ?{ $_.PSIsContainer -and $_.Attributes -match "Hidden"}
git status
見つかったすべての「レコード」に対して実行し、テキストファイルに出力します。
このようにして、非同期の変更のレポートを作成できます。
これを行う方法はありますか?