MCPcopy Index your code
hub / github.com/git-lfs/git-lfs / join

Function join

tools/filetools.go:417–426  ·  view source on GitHub ↗
(paths ...string)

Source from the content-addressed store, hash-verified

415}
416
417func join(paths ...string) string {
418 ne := make([]string, 0, len(paths))
419
420 for _, p := range paths {
421 if len(p) > 0 {
422 ne = append(ne, p)
423 }
424 }
425 return strings.Join(ne, "/")
426}
427
428// SetFileWriteFlag changes write permissions on a file
429// Used to make a file read-only or not. When writeEnabled = false, the write

Callers 3

createFastWalkInputDataFunction · 0.70
collectFastWalkResultsFunction · 0.70
WalkMethod · 0.70

Calls

no outgoing calls

Tested by 2

createFastWalkInputDataFunction · 0.56
collectFastWalkResultsFunction · 0.56