From 5f882d1388061f7485da5ec21546dc0634254b47 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 5 Sep 2025 01:59:10 -0500 Subject: [PATCH] more branch merge tracking --- branches.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/branches.go b/branches.go index 4fa85b8..490fd16 100644 --- a/branches.go +++ b/branches.go @@ -65,7 +65,7 @@ func (repo *Repo) GetTagHash(t string) string { } // lookup a hash from a tag with 'git rev-list' -func (repo *Repo) GetBranchDifferences(from string, to string) []string { +func (repo *Repo) GetBranchDifferences(to string, from string) []string { // git rev-list -n 1 v0.0.66 cmd := []string{"git", "rev-list", to + "..." + from} result, _ := repo.RunStrict(cmd)