こんなバッチファイルはいかがでしょうか。
REM gitall.bat - update repositries.
for /D %%i in (*.*) do pushd %%i & git stash & git pull & popd
コマンドプロンプトに打ち込むなら %%i ではなく %i なので、こうなります。
for /D %i in (*.*) do pushd %i & git stash & git pull & popd
こんなバッチファイルはいかがでしょうか。
REM gitall.bat - update repositries.
for /D %%i in (*.*) do pushd %%i & git stash & git pull & popd
for /D %i in (*.*) do pushd %i & git stash & git pull & popd
はじめにVSCodeにC#開発環境を追加しましょう。 VSCodeを実行し機能拡張から C# Dev Kit をインストールします。 関連する C# や .NET Install Tool もインストールされます。 以下の作業で、空のフォルダを作り、.Net が利用可能かどうかを...