From: Alan Knowles Date: Wed, 20 Mar 2019 07:11:26 +0000 (+0800) Subject: Git.vala X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=4aeb56de307ffbf335923e51b8e522bd7fcd9dee Git.vala --- diff --git a/Git.vala b/Git.vala index 367d782b..8b561720 100644 --- a/Git.vala +++ b/Git.vala @@ -294,7 +294,16 @@ namespace GitLive { var r = this.repo.lookup_remote("origin"); r.connect(Ggit.Direction.FETCH, this.callbacks, null, null); this.remote_heads = r.list(); - + + foreach(var br in this.remote_heads) { + GLib.debug("Remote: name=%s oid=%s local_oid=%s is_local=%s", + br.get_name(), + br.get_oid(), + br.get_local_oid(), + br.is_local() ? "Y" : "n" + ); + } + }