Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix format string issues as found by go vet | Santiago M. Mola | 2017-04-26 | 2 | -5/+6 |
| | |||||
* | transport: ssh, NewPublicKeys support for encrypted PEM files | Máximo Cuadros | 2017-04-21 | 2 | -9/+35 |
| | |||||
* | transport: ssh, NewPublicKeys helper | Máximo Cuadros | 2017-04-21 | 2 | -23/+68 |
| | |||||
* | Merge pull request #346 from mcuadros/ssh-known-hosts | Máximo Cuadros | 2017-04-17 | 3 | -2/+93 |
|\ | | | | | transport: ssh, default HostKeyCallback | ||||
| * | transport: ssh, fork knownhosts package (temporal) | Máximo Cuadros | 2017-04-17 | 1 | -1/+1 |
| | | |||||
| * | transport: ssh, default HostKeyCallback | Máximo Cuadros | 2017-04-16 | 3 | -2/+93 |
| | | |||||
* | | format: index, Index.Entry method | Máximo Cuadros | 2017-04-13 | 2 | -5/+39 |
|/ | |||||
* | worktree, reset implementation and status improvements | Máximo Cuadros | 2017-04-12 | 2 | -13/+16 |
| | |||||
* | merkletrie: filesystem and index speedup and documentation | Máximo Cuadros | 2017-04-11 | 1 | -18/+11 |
| | |||||
* | merge, Repository.Log | Máximo Cuadros | 2017-04-11 | 10 | -135/+164 |
|\ | |||||
| * | Add Repository.Log() method (fix #298) | Antonio Jesus Navarro Perez | 2017-04-11 | 5 | -127/+150 |
| | | | | | | | | | | | | | | | | | | | | - CommitIter is now an interface - The old CommitIter implementation is now called StorerCommitIter - CommitWalker and CommitWalkerPost are now iterators (CommitPreIterator and CommitPostIterator). - Remove Commit.History() method. There are so many ways to iterate a commit history, depending of the use case. Now, instead of use the History() method, you must use CommitPreIterator or CommitPostIterator. - Move commitSorterer to references.go because is the only place that it is used, and it must not be used into another place. - Make References method private, it must only be used into blame logic. - Added a TODO into references method, where the sortCommits is used to remove it in a near future. | ||||
| * | plumbing: transport, handle 403 in http transport | Chris Dostert | 2017-04-10 | 5 | -8/+14 |
| | | |||||
* | | plumbing: object, public Tree.FindEntry and minor diff changes | Máximo Cuadros | 2017-04-11 | 4 | -8/+17 |
| | | |||||
* | | plumbing: format, index stringer | Máximo Cuadros | 2017-04-11 | 1 | -0/+23 |
|/ | |||||
* | Set correct modes to change_adaptor tests | Antonio Jesus Navarro Perez | 2017-04-06 | 1 | -0/+6 |
| | |||||
* | object: fix Change.Files() method behavior (fix #317) | Antonio Jesus Navarro Perez | 2017-04-06 | 2 | -0/+56 |
| | | | | | - If 'from' or 'to' are tree entries that aren't files, Files() method will return nil instead of object not found error. - Added a test checking this using modules fixture. | ||||
* | Work around a Go bug when parsing timezones | Nick Thomas | 2017-03-30 | 1 | -1/+6 |
| | |||||
* | Merge pull request #314 from lupine/249-fix-bufio-buffer-full | Máximo Cuadros | 2017-03-28 | 4 | -2/+36 |
|\ | | | | | plumbing: Use ReadBytes() rather than ReadSlice() | ||||
| * | plumbing: Use ReadBytes() rather than ReadSlice() | Nick Thomas | 2017-03-27 | 4 | -2/+36 |
| | | |||||
* | | plumbing: Reference, support slash separated branch (#302) | Yusuke Hatanaka | 2017-03-28 | 2 | -2/+26 |
| | | |||||
* | | Merge pull request #305 from mvdan/history-reverse | Santiago M. Mola | 2017-03-27 | 2 | -7/+59 |
|\ \ | |/ |/| | plumbing/object: add WalkCommitHistoryPost func | ||||
| * | plumbing/object: add WalkCommitHistoryPost func | Daniel Martí | 2017-03-27 | 2 | -7/+59 |
| | | | | | | | | | | | | | | | | Also add a test. Make both the pre-order and post-order tests not sort commits, to actually test the order in which the commit history is walked. Fixes #223. | ||||
* | | plumbing: ReferenceType as Stringer | Máximo Cuadros | 2017-03-22 | 2 | -0/+17 |
| | | |||||
* | | Merge pull request #296 from ajnavarro/improvement/repository | Santiago M. Mola | 2017-03-21 | 2 | -1/+161 |
|\ \ | |/ |/| | git: Repository methods changes | ||||
| * | Make referenceFilteredIter private | Antonio Jesus Navarro Perez | 2017-03-06 | 1 | -5/+5 |
| | | |||||
| * | git: Repository methods changes | Antonio Jesus Navarro Perez | 2017-03-06 | 2 | -1/+161 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To have a more consistent public API, we decided to rename some methods, and add others: - Commit method renamed to CommitObject - Commits method renamed to CommitObjects - Tree method renamed to TreeObject - Trees method renamed to TreeObjects - Tags method renamed to TagObjects - Tag method renamed to TagObject - Added method Tags that returns tag references - Added method Branches that returns branch references - Added method Notes that returns note references - Added BlobObject method - Added BlobObjects method Also, we added more functionality related to references: - Added iterator to iterate References with a specific filter Some notes: - #298 | ||||
* | | use go-billy.v2 version | Antonio Jesus Navarro Perez | 2017-03-10 | 2 | -3/+3 |
| | | |||||
* | | project: move imports from srcd.works to gopkg.in | Antonio Jesus Navarro Perez | 2017-03-07 | 124 | -289/+289 |
|/ | | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release. | ||||
* | difftree: simplify hash comparison with deprecated files modes | Alberto Cortés | 2017-03-03 | 3 | -51/+31 |
| | | | | | | | | | | Difftree hash comparisson was quite complex because the hashes of deprecated files were diferent from the hashes of regular files. But git's difftree really treat them as equal. This patch fix this by making treenoder return the same hash for regular files than for deprecated files; now the hash comparison function is just a bytes.Equal call. | ||||
* | Merge pull request #299 from ajnavarro/fix/read-all | Santiago M. Mola | 2017-03-03 | 1 | -4/+4 |
|\ | | | | | Return values of Read not checked (fix #65) | ||||
| * | Return values of Read not checked (fix #65) | Antonio Jesus Navarro Perez | 2017-03-02 | 1 | -4/+4 |
| | | |||||
* | | replace os.FileMode use with filemode.FileMode | Alberto Cortés | 2017-03-01 | 12 | -255/+221 |
| | | |||||
* | | new filemode package | Alberto Cortés | 2017-03-01 | 2 | -0/+536 |
|/ | |||||
* | Merge pull request #294 from ajnavarro/improvement/todos-documentation | Santiago M. Mola | 2017-03-01 | 4 | -8/+8 |
|\ | | | | | Remove TODOs from documentation | ||||
| * | Remove TODOs from documentation | Antonio Jesus Navarro Perez | 2017-02-28 | 4 | -8/+8 |
| | | |||||
* | | Merge pull request #292 from ajnavarro/improvement/revlist | Máximo Cuadros | 2017-02-28 | 4 | -86/+138 |
|\ \ | |/ |/| | plumbing/revlist: input as a slice of hashes instead of commits | ||||
| * | plumbing/revlist: input as a slice of hashes instead of commits | Antonio Jesus Navarro Perez | 2017-02-27 | 4 | -86/+138 |
| | | | | | | | | | | | | | | - Now the input of the method Objects inside revlist package is a slice of hashes instead of commits. Hashes can be from Blobs, Trees and Commits objects. - ObjectStorer now is used to obtain the object content using hashes slice. - This PR fix #222. Now a test into upload_pack_test.go file is not skipped anymore. - Remove code from remote.go and server.go that is not necessary. | ||||
* | | Merge pull request #289 from ajnavarro/documentation/cache | Santiago M. Mola | 2017-02-27 | 3 | -16/+21 |
|\ \ | | | | | | | plumbing/cache: specify units in memory size (Fix #234) | ||||
| * | | plumbing/cache: specify units in memory size (Fix #234) | Antonio Jesus Navarro Perez | 2017-02-27 | 3 | -16/+21 |
| |/ | |||||
* | | Merge pull request #288 from ajnavarro/documentation/plumbing | Máximo Cuadros | 2017-02-27 | 7 | -11/+56 |
|\ \ | |/ |/| | plumbing: improve documentation (Fix #242) | ||||
| * | plumbing: improve documentation (Fix #242) | Antonio Jesus Navarro Perez | 2017-02-23 | 7 | -11/+56 |
| | | |||||
* | | Added documentation to Diff method | Antonio Jesus Navarro Perez | 2017-02-24 | 1 | -0/+1 |
| | | |||||
* | | plumbing/object: move difftree to object package | Antonio Jesus Navarro Perez | 2017-02-24 | 8 | -66/+66 |
| | | | | | | | | | | - To avoid ciclic dependency errors, we move all the difftree files to object package. - Added Diff method to Tree object. | ||||
* | | Merge pull request #286 from ajnavarro/fix/reference-iterator | Máximo Cuadros | 2017-02-24 | 2 | -1/+25 |
|\ \ | | | | | | | plumbing/storer: referenceIterator now returns the error if any | ||||
| * | | plumbing/storer: referenceIterator now returns the error if any | Antonio Jesus Navarro Perez | 2017-02-23 | 2 | -1/+25 |
| |/ | |||||
* | | difftree: ignore permissions changes between regular files | Alberto Cortés | 2017-02-22 | 2 | -6/+45 |
| | | | | | | | | Fix issue #279. | ||||
* | | test for issue 279 | Alberto Cortés | 2017-02-22 | 2 | -4/+28 |
|/ | |||||
* | Merge pull request #282 from mcuadros/ssh-agent-fix | Máximo Cuadros | 2017-02-21 | 2 | -3/+26 |
|\ | | | | | plumbing/transport: git, error on empty SSH_AUTH_SOCK | ||||
| * | plumbing/transport: git, error on empty SSH_AUTH_SOCK | Máximo Cuadros | 2017-02-21 | 2 | -3/+26 |
| | | |||||
* | | *: update tests to meet new submodule fixture | Máximo Cuadros | 2017-02-21 | 2 | -4/+6 |
| | |