Git.vala
authorAlan Knowles <alan@roojs.com>
Wed, 20 Mar 2019 07:11:26 +0000 (15:11 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 20 Mar 2019 07:11:26 +0000 (15:11 +0800)
Git.vala

index 367d782..8b56172 100644 (file)
--- 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"
+                                       );
+                                       }
+                       
                }