I have a github structure like :
group_name/Project_dir/Project_subdir which looks like this git@github.com:group_name/project_dir/subdir.git
on github . I'm trying to use go-get to get the project but it treats go get github.com/group_name/project_dir/subdir
like group_name/project_dir.git and fails.
I have done go get github.com/group_name/project_dir/subdir.git
but it pulls the code to subdir.git folder.
Is there any other way to get this code in subdir folder apart from manually doing mv subdir.get subdir
?