From cbee07cbcb11f7fc8e990e8cc5cc15e563569f43 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Mon, 11 Sep 2023 21:51:03 +0200 Subject: [PATCH] feat(git): add git commit command option notes --- docs/tools/git/git.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/tools/git/git.md b/docs/tools/git/git.md index 5f61e1a..316108c 100644 --- a/docs/tools/git/git.md +++ b/docs/tools/git/git.md @@ -109,6 +109,9 @@ def load_reference(name_or_id): `git commit -m "message"`: commit and provide a message `git commit -a`: automatically notice any modified (but not new) files and commit `git commit -v|--verbose`: show unified diff between the HEAD commit and what would be committed +`git commit --amend`: modify latest commit with the new changes +`git commit --no-verify`: commit without executing hooks +`git commit --fixup `: mark commit as correction to another `git diff `: show difference since the last commit `git diff `: show differences in a file since a particular snapshot