40dd229021
#KT-21172 Fixed
9 lines
211 B
Kotlin
Vendored
9 lines
211 B
Kotlin
Vendored
fun test(repo: Repository, commitMessage: String) {
|
|
val hash: String<caret>
|
|
repo.git("add --verbose .")
|
|
hash = repo.git("commit -m $commitMessage")
|
|
}
|
|
|
|
class Repository {
|
|
fun git(s: String) = ""
|
|
} |