We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f6ff3b commit 90e9d89Copy full SHA for 90e9d89
2 files changed
lib/repository.js
@@ -678,7 +678,7 @@ Repository.prototype.createCommitWithSignature = function(
678
parents
679
);
680
}).then(function(commit_contentResult) {
681
- commit_content = commit_contentResult;
+ commit_content = commit_contentResult + "\n";
682
return onSignature(commit_content);
683
}).then(function(signature) {
684
return Commit.createWithSignature(
test/tests/commit.js
@@ -819,7 +819,7 @@ describe("Commit", function() {
819
}
820
821
var test = this;
822
- var expectedCommitId = "53bb69297148decb1d75e015f66a7e5f4e0476c9";
+ var expectedCommitId = "ccb99bb20716ef7c37e92c7b8db029a7af7f747b";
823
var fileName = "newfile.txt";
824
var fileContent = "hello world";
825
0 commit comments