mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Merge pull request #51 from bpedman/master
Fix getCommitMessage to properly separate subject and body with 2 newlines
This commit is contained in:
commit
842ca57b4a
1 changed files with 1 additions and 1 deletions
|
@ -753,7 +753,7 @@ final class ArcanistGitAPI extends ArcanistRepositoryAPI {
|
|||
public function getCommitMessage($commit) {
|
||||
list($message) = $this->execxLocal(
|
||||
'log -n1 --format=%C %s --',
|
||||
'%s%n%b',
|
||||
'%s%n%n%b',
|
||||
$commit);
|
||||
return $message;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue