aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* worktree: Remove and Move methodsMáximo Cuadros2017-05-215-2/+206
|
* Merge pull request #394 from ajnavarro/fix/endpoints-equalityMáximo Cuadros2017-05-163-4/+20
|\ | | | | transport/server: use Endpoint string representation as a map key.
| * transport/server: use Endpoint string representation as a map key.Antonio Jesus Navarro Perez2017-05-163-4/+20
|/ | | | Two endpoints are not equals between them, even if they were generated using the same url or path.
* Merge pull request #384 from smola/support-docsMáximo Cuadros2017-05-122-0/+117
|\ | | | | README: add table with supported git features
| * capabilities, md stylingMáximo Cuadros2017-05-121-106/+106
| |
| * README: add table with supported git featuresSantiago M. Mola2017-05-092-0/+117
|/
* Merge pull request #381 from mcuadros/example-commitMáximo Cuadros2017-05-082-0/+68
|\ | | | | examples: commit example
| * examples: commit exampleMáximo Cuadros2017-05-052-0/+68
| |
* | Merge pull request #374 from ajnavarro/fix/delta-encoder-big-deltasMáximo Cuadros2017-05-082-0/+10
|\ \ | |/ |/| format/packfile: fix bug when the delta depth is equals to 50
| * format/packfile: fix bug when the delta depth is equals to 50Antonio Jesus Navarro Perez2017-05-082-0/+10
|/
* Merge pull request #375 from mcuadros/commitMáximo Cuadros2017-05-0513-54/+559
|\ | | | | worktree: Commit method implementation
| * worktree: Commit, tests improvementsMáximo Cuadros2017-05-045-11/+58
| |
| * Merge branch 'master' of github.com:src-d/go-git into commitMáximo Cuadros2017-05-0425-163/+663
| |\ | |/ |/|
* | examples: fix storage README exampleMáximo Cuadros2017-05-041-1/+1
| |
* | examples: fix compilation error from #368Máximo Cuadros2017-05-041-1/+0
| |
* | Merge pull request #368 from smola/windows-pathMáximo Cuadros2017-05-0413-52/+114
|\ \ | | | | | | do not convert local paths to URL
| * | do not convert local paths to URLSantiago M. Mola2017-04-2813-52/+114
| | | | | | | | | | | | | | | | | | | | | * Do not convert local paths to URLs, just keep them as they are. * This way we add support for Windows without taking care of Windows path-to-URL conversion.
* | | worktree: Add, logic improvementsMáximo Cuadros2017-05-041-21/+15
| | |
* | | Merge pull request #364 from mcuadros/index-pointerMáximo Cuadros2017-05-049-37/+38
|\ \ \ | |/ / |/| | plumbing: index, Entries converted in a slice of pointers
* | | Merge pull request #367 from smola/push-tagsMáximo Cuadros2017-04-272-1/+45
|\ \ \ | | | | | | | | add test for tags push, closes #354
| * | | add test for tags push, closes #354Santiago M. Mola2017-04-272-1/+45
| | | |
* | | | Merge pull request #365 from smola/git-rel-pathSantiago M. Mola2017-04-2711-62/+201
|\ \ \ \ | |/ / / |/| | | transport: make Endpoint an interface, fixes #362
| * | | transport: make Endpoint an interface, fixes #362Santiago M. Mola2017-04-2711-62/+201
| | | | | | | | | | | | | | | | | | | | * add internal *url.URL implementation for regular URLs. * add internal implementation for SCP-like URLs.
* | | | Merge pull request #363 from smola/dotgit-fileMáximo Cuadros2017-04-272-9/+142
|\ \ \ \ | | | | | | | | | | add support for .git as file, fixes #348
| * | | | add support for .git as file, fixes #348Santiago M. Mola2017-04-272-9/+142
| |/ / /
* | | | Merge pull request #366 from smola/push-forceMáximo Cuadros2017-04-272-22/+151
|\ \ \ \ | |/ / / |/| | | support force push (refspec with +)
| * | | support force push (refspec with +)Santiago M. Mola2017-04-272-22/+151
|/ / / | | | | | | | | | | | | * add support for force push * add support for push of new references
| | * worktree: Commit method implementationMáximo Cuadros2017-05-045-8/+437
| | |
| | * plumbing: MemoryObject.Writer tracks his own sizeMáximo Cuadros2017-05-045-30/+37
| | |
| | * worktree: Status return untracked for untracked filesMáximo Cuadros2017-05-042-6/+5
| | |
| | * worktree: Status return empty status instead of nilMáximo Cuadros2017-05-032-2/+23
| | |
| | * plumbing: object.Tree making public `tree` and `parents`Máximo Cuadros2017-05-012-17/+19
| |/
| * *: applying new index.Index changesMáximo Cuadros2017-04-264-26/+27
| |
| * plumbing: index, Entries converted in a slice of pointersMáximo Cuadros2017-04-265-11/+11
|/
* Merge pull request #361 from mcuadros/worktree-addMáximo Cuadros2017-04-263-4/+205
|\ | | | | worktree: add method
| * worktree: add methodMáximo Cuadros2017-04-263-4/+205
| |
* | travis: fix export private keyMáximo Cuadros2017-04-262-5/+3
| |
* | Merge pull request #360 from smola/go-vetMáximo Cuadros2017-04-2611-21/+22
|\ \ | | | | | | fix go vet issues, add go vet to CI
| * | add go vet to travisSantiago M. Mola2017-04-261-0/+1
| | |
| * | object: avoid unreachable codeSantiago M. Mola2017-04-261-4/+1
| | |
| * | format/packfile: rename Seek to SeekFromStartSantiago M. Mola2017-04-263-6/+8
| | | | | | | | | | | | | | | | | | This has signature and behavior distinct from io.Seeker, go vet complains about this, so we change it to a different name to avoid confusion.
| * | fix format string issues as found by go vetSantiago M. Mola2017-04-266-11/+12
| | |
* | | plumbing: transport, ssh fix public key builderMáximo Cuadros2017-04-261-1/+1
| | |
* | | Merge pull request #356 from mcuadros/ssh-default-authMáximo Cuadros2017-04-264-13/+41
|\ \ \ | |/ / |/| | transport: ssh, new DefaultAuthBuilder variable
| * | transport: ssh, travis testsMáximo Cuadros2017-04-213-12/+34
| | |
| * | transport: ssh, new DefaultAuthBuilder variableMáximo Cuadros2017-04-211-1/+7
| |/
* | Merge pull request #355 from mcuadros/ssh-encryptedMáximo Cuadros2017-04-252-9/+35
|\ \ | |/ |/| transport: ssh, NewPublicKeys support for encrypted PEM files
| * transport: ssh, NewPublicKeys support for encrypted PEM filesMáximo Cuadros2017-04-212-9/+35
|/
* Merge pull request #347 from mcuadros/sshMáximo Cuadros2017-04-212-23/+68
|\ | | | | transport: ssh, NewPublicKeys helper
| * transport: ssh, NewPublicKeys helperMáximo Cuadros2017-04-212-23/+68
| |