/
vasiukoff
/
sg
Обзор
Документация
Войти
/
vasiukoff
/
sg
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Commands/FormatPatch.cs
13 строк
355 B
Nathan Baulch
fix: escape double quotes in quoted git command strings (#1559)
11 июл 2025, 10:53
Не верифицирован
11 июл 2025, 10:53
9c03921
Код
Авторство
О чём код?
namespace SourceGit.Commands { public class FormatPatch : Command { public FormatPatch(string repo, string commit, string saveTo) { WorkingDirectory = repo; Context = repo; Editor = EditorType.None; Args = $"format-patch {commit} -1 --output={saveTo.Quoted()}"; } } }