diff --git a/docs/ug/cli.md b/docs/ug/cli.md index 512f4c4b69..96a0bf7a84 100644 --- a/docs/ug/cli.md +++ b/docs/ug/cli.md @@ -172,6 +172,7 @@ This flag overrides the `Ignore file size limit` field in the CSV config file. * If both start date and end date are not specified, the date of generating the report will be taken as the end date. +* May analyze the incorrect date range if used with `--since d1`. The program will throw a warning. * Cannot be used with both `--since` and `--until`. The program will throw an exception. @@ -216,7 +217,8 @@ Cannot be used with `--last-modified-date`. This may result in an incorrect last * If the start date is not specified, only commits made one month before the end date (if specified) or the date of generating the report, will be captured and analyzed. -* If `d1` is specified as the start date (`--since d1` or `-s d1`), then the earliest commit date of all repositories will be taken as the start date. +* If `d1` is specified as the start date (`--since d1` or `-s d1`), then the program will search for the earliest commit date of all repositories and use that as the start date. +* If `d1` is specified together with `--period`, then the program will warn that the date range being analyzed may be incorrect. diff --git a/frontend/src/app.vue b/frontend/src/app.vue index 956417dbd3..fa743347f6 100644 --- a/frontend/src/app.vue +++ b/frontend/src/app.vue @@ -1,10 +1,8 @@