* Returns the email of the author of the latest commit on the local branch. * @return {string}
()
| 151 | * @return {string} |
| 152 | */ |
| 153 | function gitCommitterEmail() { |
| 154 | return getStdout('git log -1 --pretty=format:"%ae"').trim(); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Returns list of commit SHAs and their cherry-pick status from the main |
no test coverage detected