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
@@ -64,27 +57,27 @@ our $INVALID_REPO_ERR = "%s is not a Git repository.\n";
64
57
our$INVALID_REPO_HINT = "FYI: If you don't want to change directories, you can run 'git -C /path/to/repository follow ...'\n";
65
58
our$INVALID_PATH_ERR = "%s is not a valid pathspec.\n";
66
59
our$INVALID_PATH_WITHIN_RANGE_ERR = "%s is not a valid pathspec within range %s.\n";
67
-
our$USAGE_SYNOPSIS= <<"END_USAGE_SYNOPSIS";
60
+
our$USAGE_SYNOPSIS = <<"END_USAGE_SYNOPSIS";
68
61
69
-
Usage: git follow [OPTIONS] [--] pathspec
62
+
Usage: git follow [OPTIONS] [--] <pathspec>
70
63
71
64
Options:
72
65
73
-
--branch, -b <branchref> Show commits for pathspec, specific to a branch.
74
-
--first, -f Show first commit where Git initiated tracking of pathspec.
75
-
--func, -F <funcname> Show commits which affected function <funcname> in pathspec.
76
-
--last, -l [<count>] Show last <count> commits which affected pathspec. Omitting <count> defaults to last commit.
77
-
--lines, -L <start> [<end>] Show commits which affected lines <start> through <end> in pathspec. Omitting <end> defaults to EOF.
78
-
--no-merges, -M Show commits which have a maximum of one parent. See --no-merges of git-log(1).
79
-
--no-patch, -N Suppress diff output. See --no-patch of git-log(1).
80
-
--no-renames, -O Disable rename detection. See --no-renames of git-log(1).
81
-
--pager, -p Force pager when invoking git-log(1). Overrides follow.pager.disable config value.
82
-
--pickaxe, -P <string> Show commits which change the number of occurrences of <string> in pathspec. See -S of git-log(1).
83
-
--range, -r <startref> [<endref>] Show commits in range <startref> to <endref> which affected pathspec. Omitting <endref> defaults to HEAD. See gitrevisions(1).
84
-
--reverse, -R Show commits in reverse chronological order. See --walk-reflogs of git-log(1).
85
-
--tag, -t <tagref> Show commits for pathspec, specific to a tag.
86
-
--total, -T Show total number of commits for pathspec.
87
-
--version, -V Show current release version.
66
+
-b, --branch <branchref> Show commits for pathspec, specific to a branch.
67
+
-f, --first Show first commit where Git initiated tracking of pathspec.
68
+
-F, --func <funcname> Show commits which affected function <funcname> in pathspec.
69
+
-l, --last [<count>] Show last <count> commits which affected pathspec. Omitting <count> defaults to last commit.
70
+
-L, --lines <start> [<end>] Show commits which affected lines <start> through <end> in pathspec. Omitting <end> defaults to EOF.
71
+
-M, --no-merges Show commits which have a maximum of one parent. See --no-merges of git-log(1).
72
+
-N, --no-patch Suppress diff output. See --no-patch of git-log(1).
73
+
-O, --no-renames Disable rename detection. See --no-renames of git-log(1).
74
+
-p, --pager Force pager when invoking git-log(1). Overrides follow.pager.disable config value.
75
+
-P, --pickaxe <string> Show commits which change the number of occurrences of <string> in pathspec. See -S of git-log(1).
76
+
-r, --range <startref> [<endref>] Show commits in range <startref> to <endref> which affected pathspec. Omitting <endref> defaults to HEAD. See gitrevisions(1).
77
+
-R, --reverse Show commits in reverse chronological order. See --walk-reflogs of git-log(1).
78
+
-t, --tag <tagref> Show commits for pathspec, specific to a tag.
79
+
-T, --total Show total number of commits for pathspec.
0 commit comments