Future<void> add(List<String> filePaths) async { await Process.run('git', [ 'add', '--', ...filePaths, ]); }