summaryrefslogtreecommitdiff
path: root/rebase.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-16 17:50:57 -0600
committerJeff Carr <[email protected]>2024-12-16 17:50:57 -0600
commit530f3618a8f4c7d9c8d3981548112439b22e09e7 (patch)
tree30b529a83767648dd31c8bfa6fff6b6163174909 /rebase.go
parente65b1c188ccb9b4aa4863ec702c3985c382f53db (diff)
update to libgit2 version 1.8.4. dump old github and vendor stuff
go install go.wit.com/apps/go-clone@latest go install go.wit.com/apps/go-mod-clean@latest go-clone --recusive go.wit.com/lib/git2go Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'rebase.go')
-rw-r--r--rebase.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rebase.go b/rebase.go
index b9c94fd..a147429 100644
--- a/rebase.go
+++ b/rebase.go
@@ -479,7 +479,7 @@ func (r *Rebase) Free() {
}
func newRebaseFromC(ptr *C.git_rebase, repo *Repository, opts *C.git_rebase_options) *Rebase {
- rebase := &Rebase{ptr: ptr, r: repo, options: opts}
+ rebase := &Rebase{ptr: ptr, r: repo, options: opts}
runtime.SetFinalizer(rebase, (*Rebase).Free)
return rebase
}