
git-commit-tree
List of commands for git-commit-tree:
-
git-commit-tree:tldr:084e3 git-commit-tree: Create a commit object reading the message from a file (use `-` for `stdin`).$ git commit-tree ${tree} -F ${filename}try on your machineexplain this command
-
git-commit-tree:tldr:724b8 git-commit-tree: Create a GPG-signed commit object.$ git commit-tree ${tree} -m "${message}" --gpg-signtry on your machineexplain this command
-
git-commit-tree:tldr:8d093 git-commit-tree: Create a commit object with the specified parent commit object.$ git commit-tree ${tree} -m "${message}" -p ${parent_commit_sha}try on your machineexplain this command
-
git-commit-tree:tldr:c6797 git-commit-tree: Create a commit object with the specified message.$ git commit-tree ${tree} -m "${message}"try on your machineexplain this command