You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2023. It is now read-only.
I'm trying to compile from scratch as the macOS binary does not seem to be working. However, when running go build, it ask for a go.mod file.
I don't have any experience with Go, but after some googling I have figured out a workaround
go mod init github.com/sinbad/lfs-folderstore
go mod tidy
I'm assuming that the first line of code creates a simple go.mod and the second line writes all the dependency of this repo to go.mod. But I'm not sure. Can someone please verify?
Hi,
I'm trying to compile from scratch as the macOS binary does not seem to be working. However, when running
go build, it ask for ago.modfile.I don't have any experience with Go, but after some googling I have figured out a workaround
I'm assuming that the first line of code creates a simple
go.modand the second line writes all the dependency of this repo togo.mod. But I'm not sure. Can someone please verify?Reference: https://golang.org/doc/tutorial/getting-started
Regards,
Kenyon