从VCS签出期间,GoLand IDE不会将项目放入工作区

If I create project from scratch, GoLand pay attention to my workspace and put project correct according to $GOPATH.

For example I have GOPATH: $HOME/{user}/go, so GoLand put it into :

$HOME/{user}/go/src/{myproject}

But if I try to checkout from VCS it puts into GoLandProjects directory:

$HOME/GoLandProjects/{myproject}

Is it possible to change that behavior?

You can specify the directory where the checkout is done right in the checkout dialog, see below.vsc checkout dialog

After the first checkout, the IDE will remember where to do the next one, as it's shown in my case and it will suggest something similar.

However, with the rise of vgo as a dependency management tool, this will not be required anymore as the GOPATH will stop being mandatory.