aboutsummaryrefslogtreecommitdiffstats
path: root/worktree_linux.go
Commit message (Collapse)AuthorAgeFilesLines
* Worktree: use syscall.Timespec.Unix #437 Tobias Klauser2022-04-091-1/+1
| | | | Use the syscall method instead of repeating the type conversions for the syscall.Stat_t Atim/Atimespec/Ctim members.
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-1/+1
|
* worktree: force convert to int64 to support 32bit os. Fix #1202Antoine GIRARD2019-08-011-1/+1
| | | | Signed-off-by: Antoine GIRARD <sapk@sapk.fr>
* *: avoid unnecessary conversionsChristian Muehlhaeuser2019-07-291-1/+1
| | | | | | | No need to convert these values, they're already of the right type. Signed-off-by: Christian Muehlhaeuser <muesli@gmail.com> (cherry picked from commit a1d8a7ac8bd0e4aff0f27dbb8bb37b8bd13a1346)
* Added support for non-symlink checkouts on Windows when elevated rights are ↵Felix Kollmann2018-03-121-0/+4
| | | | | | missing This implementation mimicks the behavior of Git on Windows Signed-off-by: Felix Kollmann <mail@fkollmann.de>
* worktree: fix file system info in windowsMáximo Cuadros2017-07-191-1/+0
|
* worktree: add methodMáximo Cuadros2017-04-261-0/+1
|
* project: move imports from srcd.works to gopkg.inAntonio Jesus Navarro Perez2017-03-071-1/+1
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* Fix compile-time error on Windows (#251)Mateusz Byczkowski2017-02-021-6/+8
| | | | | | syscall.Stat_t it not defined on Windows platform, and hence go-git won't compile on Windows. It's better to pass more generic output of FileInfo `Sys()` (of type interface{}) to `fillSystemInfo` and handle type assertion separately for each platform.
* fix worktree at non linux osMáximo Cuadros2017-01-311-0/+20