From 176c5bf5976e2beb55c84375fcb3327dac472dba Mon Sep 17 00:00:00 2001 From: Mihail Pozarski Date: Fri, 15 Jan 2021 16:14:28 -0300 Subject: [PATCH] feat(git-ksec): add help submodule for documentation --- git-ksec-help | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 git-ksec-help diff --git a/git-ksec-help b/git-ksec-help new file mode 100755 index 0000000..8648ee9 --- /dev/null +++ b/git-ksec-help @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +require 'optparse' + +OptionParser.new do |opts| + # banner and separator are the usage description showed with '--help' or '-h' + opts.banner = 'Usage: git ksec [submodule]' + opts.separator '' + opts.separator 'included submodules:' + opts.separator 'create - Creates branches for new features' + opts.separator 'help - explains what this extension is for' +end.parse!