| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-05 | Mark some symbols to be deprecated #minor (#698) | lhchavez | |
| This change introduces the file deprecated.go, which contains any constants, functions, and types that are slated to be deprecated in the next major release. These symbols are deprecated because they refer to old spellings in pre-1.0 libgit2. This also makes the build be done with the `-DDEPRECATE_HARD` flag to avoid regressions. This, together with [gorelease](https://godoc.org/golang.org/x/exp/cmd/gorelease)[1] should make releases safer going forward. 1: More information about how that works at https://go.googlesource.com/exp/+/refs/heads/master/apidiff/README.md | |||
| 2020-05-09 | refactor: Rename methods with Get prefix | Suhaib Mujahid | |
| It is not Go idiomatic to put Get into the getter's name. https: //golang.org/doc/effective_go.html#Getters Co-Authored-By: lhchavez <[email protected]> | |||
| 2020-02-23 | Update the method name | lhchavez | |
| 2020-02-23 | Merge remote-tracking branch 'upstream/master' into git_index_add_frombuffer | lhchavez | |
| 2018-10-25 | Add index.Clear() to clear the index object | Melvin | |
| 2017-07-17 | Add binding for `git_index_add_frombuffer` | Vadzim Ramanenka | |
| 2017-07-08 | Second round of keep-alives | Carlos Martín Nieto | |
| 2016-10-20 | Implement git_index_remove_directory in index wrapper | ezwiebel | |
| 2016-02-15 | Merge remote-tracking branch 'upstream/master' into next | Carlos Martín Nieto | |
| 2015-12-21 | Add Index.Find() and Index.FindPrefix() | FUJII Ryota | |
| 2015-12-16 | Fix a memory leak in Index.EntryByPath() | FUJII Ryota | |
| 2015-10-27 | Fix memory leaks in NewIndex() and OpenIndex() | FUJII Ryota | |
| 2015-10-26 | Update libgit2 to 821131f | Calin Seciu | |
| The API changes are: - `*Remote.Connect` ```go // from: func (o *Remote) Connect(direction ConnectDirection, callbacks *RemoteCallbacks) error // to: func (o *Remote) Connect(direction ConnectDirection, callbacks *RemoteCallbacks, headers []string) error ``` - `*Remote.ConnectFetch` - `headers` was added as above - `*Remote.ConnectPush` - `headers` was added as above | |||
| 2015-09-28 | Add EntryByPath method to Index | FUJII Ryota | |
| 2015-08-31 | Run go fmt | Carlos Martín Nieto | |
| As it seems to be something that many people can't get over, reformat all the files; as we're breaking things, whoever depended on 'next' will have to take many changes into account anyway, so let's include this to reduce the noise of incoming patches. | |||
| 2015-06-08 | Update to libgit2 b6011e29 | Carlos Martín Nieto | |
| 2015-05-22 | handles: panic when we cannot retrieve handle data | Patrick Steinhardt | |
| 2015-05-22 | index: use HandleList for C function callbacks. | Patrick Steinhardt | |
| 2015-05-19 | Index: Add Path() accessor | Carlos Martín Nieto | |
| 2015-05-19 | Index: Add OpenIndex | Carlos Martín Nieto | |
| This lets you persist an index at an arbitrary location. | |||
| 2015-05-19 | Index: Add ReadTree() | Carlos Martín Nieto | |
| 2015-03-23 | Add a FIXME. | Mark Probst | |
| 2014-12-11 | Remove useless includes | Carlos Martín Nieto | |
| 2014-10-25 | Merge pull request #125 from lucas-clemente/master | Carlos Martín Nieto | |
| implemented Index.AddAll as git_index_add_all wrapper | |||
| 2014-10-24 | implemented Index.AddAll, Index.RemoveAll, Index.UpdateAll | Lucas Clemente | |
| 2014-10-20 | Use Filemode type in TreeEntry and IndexEntry | Ryan Dahl | |
| Fixes #121 | |||
| 2014-09-07 | add Index#RemoveByPath. | Daniel Kertesz | |
| 2014-05-25 | Index: add functions to handle the data structure | Carlos Martín Nieto | |
| Index is not just the index file | |||
| 2014-04-02 | make it possible to handle errors | Jesse Ezell | |
| 2014-03-30 | add conflict functions | Jesse Ezell | |
| 2014-03-20 | Add index WriteTreeTo + test | Jesse Ezell | |
| 2014-02-26 | Convert the rest of the errors | Carlos Martín Nieto | |
| 2014-02-26 | Added git error code to the error object. | Jesper Hansen | |
| 2014-02-26 | Merge branch 'index-entries' | Carlos Martín Nieto | |
| 2014-02-26 | Adjust to oid -> id | Carlos Martín Nieto | |
| 2014-02-26 | Remove pointer to git_index_entry | Carlos Martín Nieto | |
| We have all the data | |||
| 2014-01-24 | added write method | Tobias Haar | |
| 2013-12-18 | Lock the OS thread when acessing errors | Carlos Martín Nieto | |
| The library stores error information in thread-local storage, which means we need to make sure that the Go runtime doesn't switch OS threads between the time we call a function and th time we attempt to retrieve the error information. | |||
| 2013-11-14 | Don't repeat the pkg-config line | Carlos Martín Nieto | |
| This is only needed once per package. Having it on every file makes the build system ask about it n times, which is silly. | |||
| 2013-05-22 | Support for index-entries | Axel Wagner | |
| 2013-03-06 | Wrap git_index | Carlos Martín Nieto | |
