aboutsummaryrefslogtreecommitdiffstats
path: root/worktree_commit_test.go
Commit message (Collapse)AuthorAgeFilesLines
* git: Add extra test for testing bad key error caseChris Marchesi2018-08-161-55/+85
| | | | | | I'm hoping this helps get codecov to a tolerable delta. :) Signed-off-by: Chris Marchesi <chrism@vancluevertech.com>
* git: Remove old hash validation codeChris Marchesi2018-08-161-5/+0
| | | | | | | | | | This will not work for a signed commit as with the GPG signature being a part of the commit, the hash is now non-deterministic. Verification of the commit is done through the validation of the signature. Signed-off-by: Chris Marchesi <chrism@vancluevertech.com>
* git: Remove use of strings.BuilderChris Marchesi2018-08-161-1/+2
| | | | | | | This was added in Go 1.10 and is not supported on Go 1.9. Switched to bytes.Buffer to ensure compatibility. Signed-off-by: Chris Marchesi <chrism@vancluevertech.com>
* git: Add ability to PGP sign commitsChris Marchesi2018-08-161-0/+115
| | | | | | | | | | This adds the ability to sign commits by adding the SignKey field to CommitOptions. If present, the commit will be signed during the WorkTree.Commit call. The supplied SignKey must already be decrypted by the caller. Signed-off-by: Chris Marchesi <chrism@vancluevertech.com>
* update to go-billy.v4 and go-git-fixtures.v3Máximo Cuadros2017-11-231-2/+2
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* Worktree.Add: Support Add deleted files, fixes #571 (#577)grunenwflorian2017-09-051-0/+36
|
* worktree: expose underlying filesystemMáximo Cuadros2017-07-261-4/+4
|
* *: upgrade to go-billy.v3, mergeMáximo Cuadros2017-06-181-6/+6
|
* worktree: Commit, tests improvementsMáximo Cuadros2017-05-041-0/+13
|
* worktree: Commit method implementationMáximo Cuadros2017-05-041-0/+126