We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92833d6 commit 96e03dcCopy full SHA for 96e03dc
1 file changed
lib/repository.js
@@ -1435,11 +1435,12 @@ Repository.prototype.mergeBranches = function(
1435
"Merge " +
1436
mergeDecorator +
1437
" '" +
1438
- fromBranch.shorthand();
+ fromBranch.shorthand() +
1439
+ "'";
1440
1441
// https://github.com/git/git/blob/master/builtin/fmt-merge-msg.c#L456-L459
1442
if (toBranch.shorthand() !== "master") {
- message += "' into " + toBranch.shorthand();
1443
+ message += " into " + toBranch.shorthand();
1444
}
1445
1446
return Promise.all([oid, processMergeMessageCallback(message)]);
0 commit comments