removeGit function

Future<void> removeGit()

Implementation

Future<void> removeGit() async {
  if (await isGitDirectory()) {
    await Process.run("rm", ['-fr', '.git']);
  }
}