diff --git a/docs/misc/git.md b/docs/misc/git.md index 2c768c9..a192e3d 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -102,6 +102,11 @@ def load_reference(name_or_id): `git add -p|--patch `: interactively stage chunks of a file `git blame `: show who last edited which line +`git blame -L , -- `: Annotate only the line range given by `,`, within the `` +`git blame -L // -- `: Annotate only the range given by the function name regex ``, within the `` +`git blame -w`: Ignore whitespace when comparing the parent’s version and the child’s to find where the lines came from +`git blame -M`: Detect moved or copied lines within a file. +`git blame -M -C [-C -C]`: Detect moved or copied lines within a file (`-M`), from all modified files in the same commit (`-C`), in the commit that created the file (`-C -C`), in all commits (`-C -C -C`) `git commit`: save the snapshot to the project history `git commit -m|--message "message"`: commit and provide a message @@ -170,6 +175,13 @@ def load_reference(name_or_id): `git log --follow `: list version history fo file, including renames `git log --all --graph --decorate`: visualizes history as a DAG `git log --oneline`: compact log + +`git log -S`: Look for diffs that change the number of occurrences of the specified `` +`git log -G`: Look for diffs whose patch text contains added/removed lines that match `` + +`git log -L ,:`: Trace the evolution of the line range given by `,`, within the `` +`git log -L //:`: Trace the evolution of the line range given by the function name regex ``, within the `` + `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.