| 181 | } |
| 182 | |
| 183 | QString Repository::message() const { |
| 184 | git_buf buf = GIT_BUF_INIT; |
| 185 | git_repository_message(&buf, d->repo); |
| 186 | return QString::fromUtf8(buf.ptr, buf.size); |
| 187 | } |
| 188 | |
| 189 | // Config file used for git specific configs |
| 190 | // config file in <Repository>/.git/config |