You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,14 +52,14 @@ Options can be specified to provide more refined information. If no options are
52
52
+`--branch`, `-b``<branch>`: Show commits specific to a branch.
53
53
+`--first`, `-f`: Show first commit where Git initiated tracking of pathspec.
54
54
+`--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).
55
-
+`--last`, `-l``[<count>]`: Show last `<count>` commits where pathspec was affected. Omitting`<count>` defaults to last commit.
56
-
+`--lines`, `-L``<start>[,<end>]`: Show commits which affected lines `<start>` to `<end>`. Omitting`<end>` defaults to `EOF`.
55
+
+`--last`, `-l``[<count>]`: Show last `<count>` commits which affect pathspec. Omit`<count>` defaults to last commit.
56
+
+`--lines`, `-L``<start>[,<end>]`: Show commits which affect lines `<start>` to `<end>`. Omit`<end>` defaults to `EOF`.
57
57
+`--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).
58
58
+`--no-patch`, `-N`: Suppress diff output. See [`--no-patch`](https://git-scm.com/docs/git-log#git-log---no-patch) of git-log(1).
59
59
+`--no-renames`, `-O`: Disable rename detection. See [`--no-renames`](https://git-scm.com/docs/git-log#git-log---no-renames) of git-log(1).
60
60
+`--pager`, `-p`: Force pager when invoking git-log(1). Overrides `follow.pager.disable` config value.
61
-
+`--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).
62
-
+`--range`, `-r``<start>[,<end>]`: Show commits in range `<start>` to `<end>`. Omitting`<end>` defaults to `HEAD`. See gitrevisions(1).
61
+
+`--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).
62
+
+`--range`, `-r``<start>[,<end>]`: Show commits in range `<start>` to `<end>`. Omit`<end>` defaults to `HEAD`.
63
63
+`--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).
64
64
+`--tag`, `-t``<tag>`: Show commits specific to a tag.
65
65
+`--total`, `-T`: Show total number of commits for pathspec.
0 commit comments