From 4aeb56de307ffbf335923e51b8e522bd7fcd9dee Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 20 Mar 2019 15:11:26 +0800 Subject: [PATCH] Git.vala --- Git.vala | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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" + ); + } + } -- 2.39.2