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: completers/common/git_completer/cmd/log.go
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,9 @@ func init() {
45
45
logCmd.Flags().Bool("no-use-mailmap", false, "Do not use mailmap file to map author and committer names and email addresses to canonical real names and email addresses.")
46
46
logCmd.Flags().String("notes", "", "Show the notes that annotate the commit")
47
47
logCmd.Flags().Bool("reverse", false, "Output the commits chosen to be shown (see Commit Limiting section above) in reverse order. Cannot be combined with --walk-reflogs.")
48
-
logCmd.Flags().String("rotate-to", "", "Discard the files before the named <file> from the output (i.e. skip to), or move them to the end of the output (i.e. rotate to).")
49
48
logCmd.Flags().Bool("show-pulls", false, "Include all commits from the default mode, but also any merge commits that are not TREESAME to the first parent but are TREESAME to a later parent.")
50
49
logCmd.Flags().Bool("simplify-by-decoration", false, "Commits that are referred by some branch or tag are selected.")
51
50
logCmd.Flags().Bool("simplify-merges", false, "First, build a history graph in the same way that --full-history with parent rewriting does.")
52
-
logCmd.Flags().String("skip-to", "", "Discard the files before the named <file> from the output (i.e. skip to), or move them to the end of the output (i.e. rotate to).")
53
51
logCmd.Flags().Bool("source", false, "Print out the ref name given on the command line by which each commit was reached.")
54
52
logCmd.Flags().Bool("sparse", false, "All commits that are walked are included.")
55
53
logCmd.Flags().BoolS("t", "t", false, "Show the tree objects in the diff output.")
0 commit comments