diff --git a/docs/misc/git.md b/docs/misc/git.md index 1e4abf5..ccf27b2 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -111,6 +111,7 @@ def load_reference(name_or_id): `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 commit --signoff`: Add a `Signed-off-by` trailer by the committer at the end of the commit log message `git diff `: show difference since the last commit `git diff `: show differences in a file since a particular snapshot @@ -171,8 +172,7 @@ def load_reference(name_or_id): `git log --oneline`: compact log `git log `: Include commits that are reachable from `` `git log ^`: Exclude commits that are reachable from `` -`git log ..`: Include commits that are reachable from `` but exclude those that are reachable from ``. -When either `` or `` is omitted, it defaults to HEAD. +`git log ..`: Include commits that are reachable from `` but exclude those that are reachable from ``. When either `` or `` is omitted, it defaults to HEAD. `git log ...`: Include commits that are reachable from either `` or `` but exclude those that are reachable from both. When either `` or `` is omitted, it defaults to HEAD. `git log ^@`: Include anything reachable from `` parents but not the commit itself @@ -245,7 +245,7 @@ It's generally recommended creating annotated tags so it's possible to have all `git clean`: remove untracked files form the working tree `git clean -d`: recurse into untracked directories while cleaning -`git clean --interactive`: clean files interactively +`git clean --interactive`: clean files interactively `git checkout `: discard changes `git checkout -- `: discard changes, no output to screen