こんなバッチファイルはいかがでしょうか。
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 コマンドプロ...
0 件のコメント:
コメントを投稿