gitfs icon indicating copy to clipboard operation
gitfs copied to clipboard

A complete solution for static files in Go code

Results 6 gitfs issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to use `gitfs` to retrieve files from a repository using a path and pointing to a branch that isn't master. What is the correct format for the...

When the git repo is configured with SSH (i.e. the remote starts with "[email protected]:krokicki/myproject.git") then binary packing fails as follows (gitfs.New fails the same way): ``` $ gitfs ./... panic:...

enhancement

this is the error ``` Failed encoding filesystem "github.com/segator/transcoderd": opening file .git\COMMIT_EDITMSG: http: invalid character in file path ``` in my main.go i have this ``` err := gitfs.New(ctx, "github.com/segator/transcoderd",)...

bug

It seems when opening a file with gitfs for example to copy it to another file it use a lot of memory! but only in the moment you open and...

Hi, I'd find it very handy to be able to print the current ref (latest branch/commit), if one was not provided explicitly. ```go type HasCommitSHA interface { CommitSHA() string }...