I have two code repository A and B in Go, A depends on B using gomod management. For example, the latest tag version of B is v1.0.1 and the same version in A's go.mod, and then some new commits are merged into B, but without upgrade tag. Can I get the latest changes just by go get -u A_GIT_PATH
? I try some times, but I can't get the newest B into my local workplace, may gomod's cache causes this problem?
Looking forward for any suggest, thanks so much~