mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-19 18:28:38 +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) {
|
public function getCommitMessage($commit) {
|
||||||
list($message) = $this->execxLocal(
|
list($message) = $this->execxLocal(
|
||||||
'log -n1 --format=%C %s --',
|
'log -n1 --format=%C %s --',
|
||||||
'%s%n%b',
|
'%s%n%n%b',
|
||||||
$commit);
|
$commit);
|
||||||
return $message;
|
return $message;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue