Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUngureanu Marius <marius.ungureanu@xamarin.com>2014-06-03 19:17:34 +0400
committerUngureanu Marius <marius.ungureanu@xamarin.com>2014-06-03 23:22:35 +0400
commit2f52a408344fbfff551a0eccc40293a508c79559 (patch)
treec3bcb5a6b5fe5206c6c409346d7f91ca786f2e9a /LibGit2Sharp/Repository.cs
parent94f769e812cc5b86a95cf1037e6c51ac56afb0ba (diff)
Commit: Introduce CommentaryChar and PrettifyMessage in CommitOptions
Diffstat (limited to 'LibGit2Sharp/Repository.cs')
-rw-r--r--LibGit2Sharp/Repository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs
index 3e56327f..68d87e6f 100644
--- a/LibGit2Sharp/Repository.cs
+++ b/LibGit2Sharp/Repository.cs
@@ -935,7 +935,7 @@ namespace LibGit2Sharp
}
}
- Commit result = ObjectDatabase.CreateCommit(author, committer, message, true, tree, parents);
+ Commit result = ObjectDatabase.CreateCommit(author, committer, message, tree, parents, options.PrettifyMessage, options.CommentaryChar);
Proxy.git_repository_state_cleanup(handle);