I have a message with a message like [Hello World]Something.
Then I use git format-patch HEAD ~ 1 to create the patch.
Patch content like this:
Subject: [PATCH 1/7] [Hello World] Something.
But after I used git am to apply the patch, the commit message became "Something", [Hello World] seems lost.
How to save the contents to "[]" after applying the patch?
source share