* feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> * feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> --------- Signed-off-by: ci-bot <ci-bot@kubesphere.io> Co-authored-by: ks-ci-bot <ks-ci-bot@example.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
27 lines
437 B
Go
27 lines
437 B
Go
// +build linux
|
|
|
|
package git
|
|
|
|
import (
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/go-git/go-git/v5/plumbing/format/index"
|
|
)
|
|
|
|
func init() {
|
|
fillSystemInfo = func(e *index.Entry, sys interface{}) {
|
|
if os, ok := sys.(*syscall.Stat_t); ok {
|
|
e.CreatedAt = time.Unix(os.Ctim.Unix())
|
|
e.Dev = uint32(os.Dev)
|
|
e.Inode = uint32(os.Ino)
|
|
e.GID = os.Gid
|
|
e.UID = os.Uid
|
|
}
|
|
}
|
|
}
|
|
|
|
func isSymlinkWindowsNonAdmin(err error) bool {
|
|
return false
|
|
}
|