I have a commit with message like [Hello World]Something.
Then I use git format-patch HEAD~1 to crate a patch.
Content of patch like this:
Subject: [PATCH 1/7] [Hello World] Something.
But after I use git am to apply patch,the commit message became "Something" only,[Hello World] seems lost.
How can I keep content in "[]" after apply patch?