diff options
author | n-peugnet <n.peugnet@free.fr> | 2021-10-13 00:14:37 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2021-10-13 00:14:37 +0200 |
commit | e0482eff8323bd5f2133078c8b809d757f9725be (patch) | |
tree | 235487fde7798f7975f1548c47a4dbd01999fe5a /exp/README.md | |
parent | 52833e6a4f06da56d2adeea000c9db9b2510d3a4 (diff) | |
download | dna-backup-e0482eff8323bd5f2133078c8b809d757f9725be.tar.gz dna-backup-e0482eff8323bd5f2133078c8b809d757f9725be.zip |
fix exp daily commits using git log --first-parent
Without this option daily commits visibly alternated between two
branches, creating huge diffs at each switch, and causing the data to be
misleading.
Diffstat (limited to 'exp/README.md')
-rw-r--r-- | exp/README.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/exp/README.md b/exp/README.md index 1437aea..2ad6ece 100644 --- a/exp/README.md +++ b/exp/README.md @@ -4,7 +4,7 @@ ```bash # run experiences -make [SKIP_COMMITS=<count>] [MAX_VERSION=<count>] [COMMITS=<file>] +make [SKIP_COMMITS=<count>] [MAX_VERSION=<count>] [RANGE=<range>] # clean results make mostlyclean @@ -13,12 +13,13 @@ make mostlyclean make clean ``` -Les 3 fichiers de commits suivants peuvent être automatiquement générés : +`<range>` can be one of these: +- `daily` +- `weekly` +- `monthly` -- `commits.daily` -- `commits.weekly` -- `commits.monthly` +By default: -Par défaut les 30 premiers commits journaliers sont skippés, le nombre -max de version utilisés pour l'expérience est 5 et le fichier -`commits.daily` est utiliser comme source de commits. +- `SKIP_COMMITS` = 0 +- `MAX_VERSION` = 5 +- `RANGE` = daily |