Ways to update pkg.go.dev cache #390
Replies: 3 comments
-
[방법 C: 응용][W/O make:] $ GOPROXY=https://proxy.golang.org GO111MODULE=on go get github.com/cloud-barista/cb-spider@master
$ GOPROXY=https://proxy.golang.org GO111MODULE=on go get github.com/cloud-barista/[email protected] |
Beta Was this translation helpful? Give feedback.
-
[참고자료]
|
Beta Was this translation helpful? Give feedback.
-
[사례] 신규 태깅 버전 pkg.go.dev 웹페이지 반영 관련
|
Beta Was this translation helpful? Give feedback.
-
현재 https://pkg.go.dev/github.com/cloud-barista/cb-tumblebug 페이지에 방문하면
pkg.go.dev 에서 최신 tag 라고 인식한
v0.2.9
의 코드 형상 (35e14a7) 의 godoc comments 를 수집하여godoc 형태로 보여 주고 있습니다.
[방법 A]
https://pkg.go.dev/github.com/cloud-barista/cb-tumblebug@master 주소를 웹 브라우저로 방문하면
master
브랜치의 최신 코드 형상에 따른 godoc 을 출력합니다. (+ 필요한 경우 pkg.go.dev 캐시도 업데이트)[특정 tag 에 대해 pkg.go.dev 캐시를 업데이트 하는 방법 B]
curl https://sum.golang.org/lookup/github.com/cloud-barista/[email protected]
[특정 tag 에 대해 pkg.go.dev 캐시를 업데이트 하는 방법 C]
[in Makefile]
[and use like this:]
Beta Was this translation helpful? Give feedback.
All reactions