Something that wasn't too clear to me when I started using Go several years 
ago was "where is the .git folder going to end up as part of the GOPATH 
path", if this is what you are also wondering, the answer is:


go 
--- bin
--- pkg
--- src
------flmain
------flowlogs
------github.com
------------you
------------------myProject
------------------/// At this level is where your githubg repo starts, this 
is where you will run git init from as the first step, you have to manually 
mkdir -p $GOPATH/src/github.com/yourusername/myProject

so, if flowlogs is also a project hosted on github, you will want to change 
where that is in your GOPATH, and put it under .........you/...... so that 
it is at the same level as MyProject


Hope that helps.

Diego



On Wednesday, April 5, 2017 at 3:24:16 PM UTC-4, Justin Israel wrote:
>
>
>
> On Thu, Apr 6, 2017, 6:55 AM Mukund 8kmiles <muk...@8kmiles.com 
> <javascript:>> wrote:
>
>> Hi 
>>
>> Is there a best practice or recommended folder structure followed for 
>> maintaining a GH repo inside GOPATH 
>>
>> I maintain my GO source in the default GOPATH which is /home/<user>/go
>>
>> go 
>> --- bin
>> --- pkg
>> *--- src*
>> *------flmain*
>> *------flowlogs*
>> *-------<other projects>*
>>
>> I would like to maintain the same path for Github repo and gopath. Is 
>> there a standard practice available without copying files between folders?
>>
>
> There should be no difference between github projects, and other projects, 
> in terms of how you store them. 
>
> go 
> --- bin
> --- pkg
> --- src
> ------flmain
> ------flowlogs
> ------github.com
> ------------you
> ------------------myProject
>
> There shouldn't be a need for copying files around. Can you be a but more 
> specific about the problem you are having? Really every project should be 
> using some kind of version control and be organised under a namespacing 
> structure similar to github to prevent clashes. 
>
>
>> Thanks & Regards
>> Mukund
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "golang-nuts" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to golang-nuts...@googlegroups.com <javascript:>.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to