I'm using go1.11, which supports go module
.
If I forked a GitHub repo, say github/a/one
, to github/b/one
, and do not want to update the import path in the source code, what is the suggested workflow with the forked repo?
A replace
directive can replace github/a/one to local path but it fails with internal package. Does anyone solve the issue with internal package?