Navigation Menu

Skip to content

Commit

Permalink
Merge branch 'maint/docs/readme'
Browse files Browse the repository at this point in the history
  • Loading branch information
nickolasburr committed Mar 13, 2018
2 parents ae0a7b0 + 7278047 commit afb6b2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -52,14 +52,14 @@ Options can be specified to provide more refined information. If no options are
+ `--branch`, `-b` `<branch>`: Show commits specific to a branch.
+ `--first`, `-f`: Show first commit where Git initiated tracking of pathspec.
+ `--func`, `-F` `<funcname>`: Show commits which affected function `<funcname>` in pathspec. See [`-L`](https://git-scm.com/docs/git-log#git-log--Lltfuncnamegtltfilegt) of git-log(1).
+ `--last`, `-l` `[<count>]`: Show last `<count>` commits where pathspec was affected. Omitting `<count>` defaults to last commit.
+ `--lines`, `-L` `<start>[,<end>]`: Show commits which affected lines `<start>` to `<end>`. Omitting `<end>` defaults to `EOF`.
+ `--last`, `-l` `[<count>]`: Show last `<count>` commits which affect pathspec. Omit `<count>` defaults to last commit.
+ `--lines`, `-L` `<start>[,<end>]`: Show commits which affect lines `<start>` to `<end>`. Omit `<end>` defaults to `EOF`.
+ `--no-merges`, `-M`: Show commits which have a maximum of one parent. See [`--no-merges`](https://git-scm.com/docs/git-log#git-log---no-merges) of git-log(1).
+ `--no-patch`, `-N`: Suppress diff output. See [`--no-patch`](https://git-scm.com/docs/git-log#git-log---no-patch) of git-log(1).
+ `--no-renames`, `-O`: Disable rename detection. See [`--no-renames`](https://git-scm.com/docs/git-log#git-log---no-renames) of git-log(1).
+ `--pager`, `-p`: Force pager when invoking git-log(1). Overrides `follow.pager.disable` config value.
+ `--pickaxe`, `-P` `<string>`: Show commits which change the number of occurrences of `<string>` in pathspec. See [`-S`](https://git-scm.com/docs/git-log#git-log--Sltstringgt) of git-log(1).
+ `--range`, `-r` `<start>[,<end>]`: Show commits in range `<start>` to `<end>`. Omitting `<end>` defaults to `HEAD`. See gitrevisions(1).
+ `--pickaxe`, `-P` `<string>`: Show commits which change the # of occurrences of `<string>`. See [`-S`](https://git-scm.com/docs/git-log#git-log--Sltstringgt) of git-log(1).
+ `--range`, `-r` `<start>[,<end>]`: Show commits in range `<start>` to `<end>`. Omit `<end>` defaults to `HEAD`.
+ `--reverse`, `-R`: Show commits in reverse chronological order. See [`--walk-reflogs`](https://git-scm.com/docs/git-log#git-log---walk-reflogs) of git-log(1).
+ `--tag`, `-t` `<tag>`: Show commits specific to a tag.
+ `--total`, `-T`: Show total number of commits for pathspec.
Expand Down

0 comments on commit afb6b2e

Please sign in to comment.