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