- Does it cover all git subcommands?
- The builder covers the most-used commands: clone, init, add, commit, push, pull, fetch, merge, rebase, log, diff, stash, cherry-pick, and reset. Rare plumbing commands are outside scope.
- Can I save frequently used commands?
- Copy the generated command and add it as a git alias in your ~/.gitconfig. The tool shows the alias syntax alongside the raw command.
- Does it validate the command before I copy it?
- It performs structural validation (required arguments, mutually exclusive flags) but cannot run the command against a real repo. Always test on a non-critical branch first.