1

If I cherry-pick original commit deadbeef with -x, Git would append a line like

(cherry picked from commit deadbeef)

Is there any way to customize this message? Like I prefer

Backported from: deadbeef

Maybe some custom Git alias?

Franklin Yu
  • 8,920
  • 6
  • 43
  • 57

1 Answers1

1

you can always use

git commit --amend

to change your commit message.

Shakil
  • 4,520
  • 3
  • 26
  • 36