Запустите пакетный файл с командами Git в веб-приложении ASP.Net - PullRequest
0 голосов
/ 30 января 2019

Я создал командный файл с помощью веб-приложения для фиксации и отправки моих файлов в репозиторий Git следующим образом:

git status
git pull
git add file.properties file.yaml file_metric.yaml
git commit -m Test Message
git push

Я вызываю этот командный файл нажатием кнопки в веб-приложении.

Мой код выглядит следующим образом:

//** File is created, now call the Batch file.
                    // Get the full file path

                    string strFilePath = sPathName;
                    // Create the ProcessInfo object
                    System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("cmd.exe");
                    psi.UseShellExecute = false;
                    psi.WorkingDirectory = Path.GetDirectoryName(strFilePath);
                    psi.RedirectStandardOutput = true;
                    psi.RedirectStandardInput = true;
                    psi.RedirectStandardError = true;
                    psi.WorkingDirectory = logFolderPath;

                    // Start the process
                    System.Diagnostics.Process proc = System.Diagnostics.Process.Start(psi);

                    // Open the batch file for reading
                    System.IO.StreamReader strm = System.IO.File.OpenText(strFilePath);

                    // Attach the output for reading
                    System.IO.StreamReader sOut = proc.StandardOutput;

                    // Attach the in for writing
                    System.IO.StreamWriter sIn = proc.StandardInput;

                    // Write each line of the batch file to standard input
                    while (strm.Peek() != -1)
                    {
                        sIn.WriteLine(strm.ReadLine());
                    }

                    strm.Close();

                    // Exit CMD.EXE
                    string stEchoFmt = "# {0} run successfully. Exiting";


                    sIn.WriteLine(String.Format(stEchoFmt, strFilePath));
                    //sIn.WriteLine("EXIT");


                    // Close the process
                    proc.Close();


                    // Read the sOut to a string.
                    string results = sOut.ReadToEnd().Trim();



                    // Close the io Streams;
                    sIn.Close(); 
                    sOut.Close();

Я получаю результаты, однако они не завершены, и файлы не зафиксированы или не помещены в репозиторий.

Вывод, который я получаю, выглядит следующим образом:

Microsoft Windows [Version 6.3.9600] (c) 2013 Microsoft Corporation.
All rights reserved.

folderPath\Test>git status On branch master Your branch is up to date
with 'origin/master'.

Changes to be committed:   (use "git reset HEAD <file>..." to unstage)

    new file:   file.properties     new file:   file.yaml   new file:  
file_metric.yaml

Changes not staged for commit:   (use "git add <file>..." to update
what will be committed)   (use "git checkout -- <file>..." to discard
changes in working directory)

    modified:   Git5.bat

Untracked files:   (use "git add <file>..." to include in what will be
committed)

    Git_Bat.Bat     ../TestGit_Bat.Bat


folderPath\Test>git pull
Already up to date.

folderPath\Test>git add file.properties file.yaml file_metric.yaml

folderPath\Test>git commit -m YAML Files

folderPath\Test>git push

folderPath\Test># folderPath\Test/Git_Bat.Bat run successfully.
Exiting

folderPath\Test>

Видно, что я не получаю вывод после Git.add Files Command.

Когда я пытаюсь запуститьвышеприведенный пакетный файл , напрямую использующий Терминал, работает успешно, и файлы передаются корректно.

Требуются ли какие-либо изменения при вызове через Код?

1 Ответ

0 голосов
/ 03 февраля 2019

Я нашел свою ошибку и хотел бы исправить ее сам ...

Ошибка была при создании командного файла, имена файлов и комментарии не были заключены в двойные кавычки.Это должно быть следующим:

git status
git pull
git add "file.properties" "file.yaml" "file_metric.yaml"
git commit -m "Test Message"
git push

Надеюсь, это поможет кому-то еще.Удачного кодирования:)

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...