Working example input
Given this input:
python git_metrics.py release-lead-time [--tag-pattern=<fn_match>] [--earliest-date=<timestamp>] <path_to_git_repo> > repo_data.csv
I don't understand what an example tag-pattern would be etc
it's a fn_match pattern, https://docs.python.org/3/library/fnmatch.html.
So a example would be v* this would match all tags starting with a v like v1.2.0
@Neppord Can you tell me what I am doing wrong here?
git tag output:
d0.1.0_deploy_dev d0.1.0_deploy_stg v0.1.0
running:
python git-metrics/git_metrics.py release-lead-time --tag-pattern="*" .
outputs:
commit timestamp,tag timestamp,previous release tag,release tag,repo name
what should <path_to_git_repo> be? I am running it at the root level of the repo that has a .git folder.