Options (1)
-S, --gpg-signbooleanCreate a GPG-signed commit object
Example:
git commit-tree {{tree}} -m "{{message}}" {{[-S|--gpg-sign]}}Examples (4)
Create a commit object with the specified message
git commit-tree tree -m "message"Create a commit object reading the message from a file (use `-` for `stdin`)
git commit-tree tree -F path/to/fileCreate a GPG-signed commit object
git commit-tree tree -m "message" [-S|--gpg-sign]Create a commit object with the specified parent commit object
git commit-tree tree -m "message" -p parent_commit_shamade by @shridhargupta | data from tldr-pages