From 167f0c8b5039cddcf9f2321c005ae0dc37164fae Mon Sep 17 00:00:00 2001 From: Timothy Hwang Date: Thu, 9 Nov 2017 13:54:54 -0500 Subject: [PATCH] Docs> Add -- in front of cmd for git log The current docs are incorrect, using the command gives an error msg: ``` error: unknown argument --since=1 week ago error: if that argument was meant for git-log, error: please put it after two dashes ( -- ). ``` --- Commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commands.md b/Commands.md index 744690e70..f84ad5a15 100644 --- a/Commands.md +++ b/Commands.md @@ -236,7 +236,7 @@ $ git effort --above 5 If you wish to see only the commits in the last month you may use `--since` (it supports the same syntax like `git log --since`): ``` - $ git effort --since='last month' + $ git effort -- --since='last month' ``` By default `git ls-files` is used, however you may pass one or more files to `git-effort(1)`, for example: