File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed
Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ git evtag --compat --sign TAG
4444$ git evtag -h
4545usage: git-evtag [-h] [--rev REV] [--repo REPO] [--verify VERIFY] [--sign SIGN] [--compat]
4646
47- Tree checksum of a git repository
47+ EVTag checksum of a git repository
4848
4949options:
5050 -h, --help show this help message and exit
5151 --rev REV Git revision (default: HEAD)
52- --repo REPO Path to the git repository (default: current dir )
53- --verify VERIFY Verify the tree checksum from the input tag message
54- --sign SIGN Sign the input tag with the tree checksum
52+ --repo REPO Path to the git repository (default: PWD )
53+ --verify VERIFY Verify the EVTag checksum of the input tag
54+ --sign SIGN Sign the input tag with the EVTag checksum
5555 --compat Produce ' Git-EVTag-v0-SHA512' prefixed output
5656```
5757
Original file line number Diff line number Diff line change @@ -366,15 +366,13 @@ def validate_args(args: argparse.Namespace) -> bool:
366366
367367
368368def parse_args () -> argparse .Namespace :
369- parser = argparse .ArgumentParser (description = "Tree checksum of a git repository" )
369+ parser = argparse .ArgumentParser (description = "EVTag checksum of a git repository" )
370370 parser .add_argument ("--rev" , help = "Git revision (default: HEAD)" )
371371 parser .add_argument (
372- "--repo" , default = "." , help = "Path to the git repository (default: current dir )"
372+ "--repo" , default = "." , help = "Path to the git repository (default: PWD )"
373373 )
374- parser .add_argument (
375- "--verify" , help = "Verify the tree checksum from the input tag message"
376- )
377- parser .add_argument ("--sign" , help = "Sign the input tag with the tree checksum" )
374+ parser .add_argument ("--verify" , help = "Verify the EVTag checksum of the input tag" )
375+ parser .add_argument ("--sign" , help = "Sign the input tag with the EVTag checksum" )
378376 parser .add_argument (
379377 "--compat" ,
380378 action = "store_true" ,
You can’t perform that action at this time.
0 commit comments