diff options
author | Your Name <you@example.com> | 2021-05-19 18:00:16 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-19 18:00:16 -0400 |
commit | be88609c825e18201f240415fe74a31c1a789484 (patch) | |
tree | 8b051262fcd9e1388ba45f14369112d3d9fb0d52 /src/cmd_usage.cc | |
parent | 38e33d8756a5b652965be8ada478b5c4238b857c (diff) | |
download | dmtool-be88609c825e18201f240415fe74a31c1a789484.tar.gz dmtool-be88609c825e18201f240415fe74a31c1a789484.tar.bz2 dmtool-be88609c825e18201f240415fe74a31c1a789484.zip |
Added git command; refactoring
Diffstat (limited to 'src/cmd_usage.cc')
-rw-r--r-- | src/cmd_usage.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd_usage.cc b/src/cmd_usage.cc index 53e9d01..6219996 100644 --- a/src/cmd_usage.cc +++ b/src/cmd_usage.cc @@ -45,6 +45,8 @@ namespace cmd { text << indDesc << " init; adds spellcasting to a creature which currently does not have spellcasting" << std::endl; text << indDesc << " ability value; sets the spellcasting ability, where value is the ability name" << std::endl; text << indDesc << " level l slots; sets the number of slots at spell level l to slots" << std::endl; + text << indOpt << "git [command]" << std::endl; + text << indDesc << "Execute a git command within the dmtool folder." << std::endl; text << indOpt << "help" << std::endl; text << indDesc << "Show this help." << std::endl; return text.str(); |