fun test(repo: Repository, commitMessage: String) { repo.git("add --verbose .") val hash: String = repo.git("commit -m $commitMessage") } class Repository { fun git(s: String) = "" }