Re: [go-nuts] Go Path & Github Sync

2017-04-05 Thread Jérôme LAFORGE
>From my experience/point of view, GOPATH is the first concept you have to >understand for managing correctly your project. Even if this concept is finally simple. IMHO, this is the first strange/bad feeling with Go. And lot of my workmates prefer to not start a new project alone (even if the

Re: [go-nuts] Go Path & Github Sync

2017-04-05 Thread Diego Medina
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

Re: [go-nuts] Go Path & Github Sync

2017-04-05 Thread Justin Israel
On Thu, Apr 6, 2017, 6:55 AM Mukund 8kmiles 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//go > > go > --- bin > --- pkg > *--- src* > *--flmain* > *-

[go-nuts] Go Path & Github Sync

2017-04-05 Thread Mukund 8kmiles
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//go go --- bin --- pkg *--- src* *--flmain* *--flowlogs* *---* I would like to maintain the same path for Github