mirror of
https://github.com/neovim/neovim.git
synced 2025-09-05 19:08:15 +00:00
feat(vim-patch): mention original author #20772
This commit is contained in:
@@ -120,9 +120,9 @@ get_vim_sources() {
|
||||
|
||||
commit_message() {
|
||||
if [[ -n "$vim_tag" ]]; then
|
||||
printf '%s\n%s' "${vim_message}" "${vim_commit_url}"
|
||||
printf '%s\n\n%s\n\n%s' "${vim_message}" "${vim_commit_url}" "${vim_coauthor}"
|
||||
else
|
||||
printf 'vim-patch:%s\n\n%s\n%s' "$vim_version" "$vim_message" "$vim_commit_url"
|
||||
printf 'vim-patch:%s\n\n%s\n\n%s\n\n%s' "$vim_version" "$vim_message" "$vim_commit_url" "$vim_coauthor"
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -175,6 +175,7 @@ assign_commit_details() {
|
||||
vim_commit_url="https://github.com/vim/vim/commit/${vim_commit}"
|
||||
vim_message="$(git -C "${VIM_SOURCE_DIR}" log -1 --pretty='format:%B' "${vim_commit}" \
|
||||
| sed -e 's/\(#[0-9]\{1,\}\)/vim\/vim\1/g')"
|
||||
vim_coauthor="$(git -C "${VIM_SOURCE_DIR}" log -1 --pretty='format:Co-authored-by: %an <%ae>' "${vim_commit}")"
|
||||
if [[ ${munge_commit_line} == "true" ]]; then
|
||||
# Remove first line of commit message.
|
||||
vim_message="$(echo "${vim_message}" | sed -e '1s/^patch /vim-patch:/')"
|
||||
|
Reference in New Issue
Block a user