I've implemented a Git command and used git aliases to hook it into Git but is there a way to hook the Git help? I'm running on Windows and if I issue git help mycmd I get a popup telling me that Git can't find a git-mycmnd.html file.
I've implemented my command using Python so is there a proper Git-ish way to add the help in, other than 'just knowing' where help files have to be placed?
hellowhich runsgit show HEADand when I rungit help helloI get a response'hello' is aliased to 'show HEAD'help.formatandhelp.htmlpathHere.git config --local help.htmlpath "http://www.google.com"thengit help lovethis should give you an idea about where to start