Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for localGitRepo (0.19 sec)

  1. src/cmd/go/internal/modfetch/codehost/git.go

    	"cmd/go/internal/base"
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/par"
    	"cmd/go/internal/web"
    
    	"golang.org/x/mod/semver"
    )
    
    // LocalGitRepo is like Repo but accepts both Git remote references
    // and paths to repositories on the local file system.
    func LocalGitRepo(ctx context.Context, remote string) (Repo, error) {
    	return newGitRepoCached(ctx, remote, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top