summaryrefslogtreecommitdiff
path: root/branches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-05 01:59:10 -0500
committerJeff Carr <[email protected]>2025-09-05 01:59:10 -0500
commit5f882d1388061f7485da5ec21546dc0634254b47 (patch)
treeeb2fa75ea3232327f7f58a8ba50716ada28c296a /branches.go
parent658a2ce1a2fc83e63ceb5ce11daaec6a5179ec89 (diff)
more branch merge trackingv0.0.115
Diffstat (limited to 'branches.go')
-rw-r--r--branches.go2
1 files changed, 1 insertions, 1 deletions
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)