mountGit abstract method

Future<MountRecord> mountGit({
  1. required String url,
  2. required String target,
  3. String? name,
  4. String? branch,
  5. int? depth,
  6. bool rw = false,
})

Mounts git repository url onto target (<node>:<remote-path>).

Implementation

Future<MountRecord> mountGit({
  required String url,
  required String target,
  String? name,
  String? branch,
  int? depth,
  bool rw = false,
});