Hello
I would like to create a command line tool where the user can add comment "the git way", ie the workflow for a command line tool named "tool" would be the following:
1. The user types the following on the command line:
$> tool answer
2. The software opens the default text editor (or vi as a fallback)
3. the user types his text
4. on the user leaving the text editor, the input is taken by the software
It's basically a simple "git commit"
Is it possible and if so how ? My trials using the package Exec did all failed...
Thanks in advance
Joseph