diff --git a/docs/misc/git.md b/docs/misc/git.md index 8cdd64c..5360a71 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -98,7 +98,7 @@ The applied config in each repository is the combination of all three scopes in ### Viewing Project History -`git log`: show history of changes +`git log []`: show history of changes `git log -p|--patch`: show history of changes and complete differences `git log --stat --summary`: show overview of the change `git log --follow `: list version history fo file, including renames @@ -111,15 +111,6 @@ The applied config in each repository is the combination of all three scopes in `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 last `` commits -`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 `` -`git log ...`: Include commits that are reachable from either `` or `` but exclude those that are reachable from both -`git log ^@`: Include anything reachable from `` parents but not the commit itself - -> **Note**: when `` is omitted it defaults to HEAD - `git shortlog`: list commits by author `git reflog []`: show record of when the tips of branches and other references were updated in the local repository @@ -232,6 +223,38 @@ A repository has one main worktree (if it’s not a bare repository) and zero or `git rebase --autostash`: automatically create a temporary stash entry before rebasing `git rebase --autosquash`: automatically apply "squash!" or "fixup!" or "amend!" commits +## [Git Revisions](https://git-scm.com/docs/gitrevisions) + +### Specifying Revisions + +A revision parameter `` can take one of these forms: + +- ``: full or short sha of the object. +- ``: a named object reference. One of: + - `refs/` + - `refs/tags/` + - `refs/heads/` + - `refs/remotes/` + - `refs/remotes/` + - `HEAD` or `*_HEAD` +- `[]@{}`: a revision at a specific point in time. +- `[]@{n}`: `n`th prior value of a ``. +- `@{-n}`: ``th branch/commit checked out before the current one. +- `^`: first parent of ``. +- `~[]`: `n`th parent of `` + +### Specifying Ranges + +A revision range can take one of these forms: + +- ``: Include commits that are reachable from `` (`` and its ancestors). +- `^`: Exclude commits that are reachable from `` (`` and its ancestors). +- `..`: Include commits that are reachable from `` but exclude those that are reachable from ``. +- `...`: Include commits that are reachable from either or but exclude those that are reachable from both. +`^@`: A suffix `^` followed by `@` is the same as listing all parents of `` (meaning, include anything reachable from its parents, but not the commit itself). +`^!`: A suffix `^` followed by `!` is the same as giving commit `` and all its parents prefixed with `^` to exclude them (and their ancestors). +`^-`: Equivalent to `^..`, with ` = 1` if not given. + [git]: https://git-scm.com/ "Git Home Page" [vcs]: https://en.wikipedia.org/wiki/Version_control "VCS on Wikipedia"