diff --git a/src/Vcs/Git/GitVcs.cs b/src/Vcs/Git/GitVcs.cs index 3a3133d..4bb7404 100644 --- a/src/Vcs/Git/GitVcs.cs +++ b/src/Vcs/Git/GitVcs.cs @@ -17,7 +17,7 @@ public void Commit(string csProjFilePath, string message) throw new OperationCanceledException($"Unable to add cs proj file {csProjFilePath} to git index"); } - if(!LaunchGitWithArgs($"commit -m \"{message}\"")) + if(!LaunchGitWithArgs($"commit --no-verify -m \"{message}\"")) { throw new OperationCanceledException("Unable to commit"); }