aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* 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
* 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
| |
* | Merge pull request #319 from ajnavarro/fix/parents-with-pathSantiago M. Mola2017-04-202-7/+30
|\ \ | |/ |/| references.go: fix Parents from commit iterator
| * Add testAntonio Jesus Navarro Perez2017-04-191-0/+21
| |
| * references.go: fix Parents from commit iteratorAntonio Jesus Navarro Perez2017-04-191-7/+9
|/ | | | Avoid a panic when we are iterating parents from a commit. There are more than EOF errors, like Parse errors. Now instead of throw a panic we return the error.
* Merge pull request #346 from mcuadros/ssh-known-hostsMáximo Cuadros2017-04-173-2/+93
|\ | | | | transport: ssh, default HostKeyCallback
| * transport: ssh, fork knownhosts package (temporal)Máximo Cuadros2017-04-171-1/+1
| |
| * transport: ssh, default HostKeyCallbackMáximo Cuadros2017-04-163-2/+93
| |
* | Merge pull request #344 from mcuadros/submodules-checkoutMáximo Cuadros2017-04-1710-58/+483
|\ \ | | | | | | worktree: reset and checkout support for submodules
| * | worktree: reset and checkout support for submodulesMáximo Cuadros2017-04-158-53/+444
| | |
| * | format: index, Index.Entry methodMáximo Cuadros2017-04-132-5/+39
| | |
* | | appveyor: allow failuresMáximo Cuadros2017-04-171-1/+5
| |/ |/|
* | travis: updateMáximo Cuadros2017-04-151-4/+2
| |
* | ci windowsMáximo Cuadros2017-04-151-0/+18
|/
* Merge pull request #339 from mcuadros/statusMáximo Cuadros2017-04-1219-292/+1288
|\ | | | | worktree, status and reset implementation based on merkletrie
| * examples: checkout example updateMáximo Cuadros2017-04-122-8/+20
| |
| * worktree, reset implementation and status improvementsMáximo Cuadros2017-04-128-122/+265
| |
| * merkletrie: filesystem and index speedup and documentationMáximo Cuadros2017-04-115-229/+190
| |
| * merge, Repository.LogMáximo Cuadros2017-04-1119-181/+345
| |\ | |/ |/|
* | Merge pull request #337 from ajnavarro/repository-logMáximo Cuadros2017-04-1114-173/+331
|\ \ | | | | | | Add Repository.Log() method (fix #298)
| * | Modify examplesAntonio Jesus Navarro Perez2017-04-113-15/+24
| | |
| * | Add Repository.Log() method (fix #298)Antonio Jesus Navarro Perez2017-04-1111-158/+307
|/ / | | | | | | | | | | | | | | | | | | - 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 transportChris Dostert2017-04-105-8/+14
| |
| * worktree, status implementation based on merkletrie and reset and checkout ↵Máximo Cuadros2017-04-118-268/+632
| | | | | | | | implementations
| * plumbing: object, public Tree.FindEntry and minor diff changesMáximo Cuadros2017-04-114-8/+17
| |
| * plumbing: format, index stringerMáximo Cuadros2017-04-111-0/+23
| |
| * merkletrie: node support for billy filesystemsMáximo Cuadros2017-04-112-0/+255
| |