isGitInitCommand function
Implementation
bool isGitInitCommand(CommandRecord command) =>
command.executable == 'git' &&
command.argumentList.isNotEmpty &&
command.argumentList.first == 'init';
bool isGitInitCommand(CommandRecord command) =>
command.executable == 'git' &&
command.argumentList.isNotEmpty &&
command.argumentList.first == 'init';