X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Git.vala;h=1e8752b304accf5d72ca14b0bf851e5391b1c131;hb=654b2c1a963b014d2fc295dbfbc58307919106ba;hp=24efb6bd5c08218dee1856e9978c24a135d59898;hpb=b457900ae4c0e4bd5bb8fb03d7b5c5023bcf5224;p=gitlive diff --git a/Git.vala b/Git.vala index 24efb6bd..1e8752b3 100644 --- a/Git.vala +++ b/Git.vala @@ -176,10 +176,10 @@ namespace GitLive { var new_tree = this.repo.lookup(treeoid,typeof (Ggit.Tree)) as Ggit.Tree; var sig = new Ggit.Signature.now( - Ggit.Config.get_string("user.name"), - Ggit.Config.get_string("user.email") + this.repo.get_config().get_string("user.name"), + this.repo.get_config().get_string("user.email") ); - a.repo.create_commit("HEAD", sig, sig, null, "test commit " + str, new_tree, parents); + this.repo.create_commit("HEAD", sig, sig, null, "test commit " + str, new_tree, parents);