gits_cli 3.0.0 gits_cli: ^3.0.0 copied to clipboard
Get it simple command flutter with Gits CLI
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate gits_cli
Use it
The package has the following executables:
$ gits_cli
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add gits_cli
With Flutter:
$ flutter pub add gits_cli
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
gits_cli: ^3.0.0
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:gits_cli/build_app/apk/apk_command.dart';
import 'package:gits_cli/build_app/appbundle/appbundle_command.dart';
import 'package:gits_cli/build_app/build_command.dart';
import 'package:gits_cli/build_app/ios/ios_command.dart';
import 'package:gits_cli/build_app/ipa/ipa_command.dart';
import 'package:gits_cli/build_app/prebuild_command.dart';
import 'package:gits_cli/build_app/prebuild_ios/prebuild_ios_command.dart';
import 'package:gits_cli/constants.dart';
import 'package:gits_cli/dependency_manager.dart';
import 'package:gits_cli/extensions/arg_parser_extension.dart';
import 'package:gits_cli/extensions/arg_result_extension.dart';
import 'package:gits_cli/extensions/extensions.dart';
import 'package:gits_cli/extensions/map_yaml_extension.dart';
import 'package:gits_cli/generate/config/config_command.dart';
import 'package:gits_cli/generate/firebase/firebase_command.dart';
import 'package:gits_cli/generate/generate.dart';
import 'package:gits_cli/generate/localization/localization_command.dart';
import 'package:gits_cli/helper/arb_helper.dart';
import 'package:gits_cli/helper/cucumber_helper.dart';
import 'package:gits_cli/helper/directory_helper.dart';
import 'package:gits_cli/helper/firebase_helper.dart';
import 'package:gits_cli/helper/flavor_helper.dart';
import 'package:gits_cli/helper/flutter_helper.dart';
import 'package:gits_cli/helper/gits_modular_helper.dart';
import 'package:gits_cli/helper/helper.dart';
import 'package:gits_cli/helper/localization_helper.dart';
import 'package:gits_cli/helper/read_json_file.dart';
import 'package:gits_cli/helper/status_helper.dart';
import 'package:gits_cli/helper/yaml_helper.dart';
import 'package:gits_cli/project/analyze/analyze_command.dart';
import 'package:gits_cli/project/clean/clean_command.dart';
import 'package:gits_cli/project/cucumber/cucumber_command.dart';
import 'package:gits_cli/project/drive/drive_command.dart';
import 'package:gits_cli/project/format/format_command.dart';
import 'package:gits_cli/project/get/get_command.dart';
import 'package:gits_cli/project/project.dart';
import 'package:gits_cli/project/run/run_command.dart';
import 'package:gits_cli/project/test/coverage_command.dart';
import 'package:gits_cli/project/test/test_command.dart';
import 'package:gits_cli/project/test_drive/test_drive_command.dart';
import 'package:gits_cli/project/upgrade/upgrade_command.dart';
import 'package:gits_cli/tools/changelog/changelog_command.dart';
import 'package:gits_cli/tools/doctor/doctor_command.dart';
import 'package:gits_cli/tools/init/init_command.dart';