小さな git クライアントを作成しようとしていますが、git pull および git clone コマンドを使用したいだけです。
私はこれをやっています:
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "path to my.bat";
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
.bat ファイルは正常に動作し、簡単なコマンドを実行しますが、そのバット ファイルから git コマンドを実行したいのですが、git が認識されません。
これを行う正しい方法はありますか?