I am working on two github based golang projects where one project is dependent on other.
Let say I have project A (github.com/A) depending on project B (github.com/B). So as of now, I am making changes to project B, pushing the code, and executing go get github.com/B
in project A, to fetch the latest code of project B.
This procedure is time consuming and also doesn't sound right to me. I have thought the changing files of project B at GO_PATH location, but seems downloaded projects at GO_PATH are read only.
Is there any better way to do this?