1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 20:55:24 +02:00

git-commit: update page (#10334)

* git-commit: update page

* git-commit: update page

* Use long options
* Add key_id to --gpg-sign example

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
Zhizhen He 2023-06-06 19:00:18 +08:00 committed by GitHub
parent b8a17d0aab
commit 6a1851f3ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,19 +5,19 @@
- Commit staged files to the repository with a message: - Commit staged files to the repository with a message:
`git commit -m "{{message}}"` `git commit --message "{{message}}"`
- Commit staged files with a message read from a file: - Commit staged files with a message read from a file:
`git commit --file {{path/to/commit_message_file}}` `git commit --file {{path/to/commit_message_file}}`
- Auto stage all modified files and commit with a message: - Auto stage all modified and deleted files and commit with a message:
`git commit -a -m "{{message}}"` `git commit --all --message "{{message}}"`
- Commit staged files and [S]ign them with the GPG key defined in `~/.gitconfig`: - Commit staged files and sign them with the specified GPG key (or the one defined in the config file if no argument is specified):
`git commit -S -m "{{message}}"` `git commit --gpg-sign {{key_id}} --message "{{message}}"`
- Update the last commit by adding the currently staged changes, changing the commit's hash: - Update the last commit by adding the currently staged changes, changing the commit's hash:
@ -29,4 +29,4 @@
- Create a commit, even if there are no staged files: - Create a commit, even if there are no staged files:
`git commit -m "{{message}}" --allow-empty` `git commit --message "{{message}}" --allow-empty`