Re: [go-nuts] Re: go get v git clone

2021-03-13 Thread arthurwil...@gmail.com
On Saturday, March 13, 2021 at 8:44:44 AM UTC-6 Jan Mercl wrote: > On Sat, Mar 13, 2021 at 3:35 PM arthurwil...@gmail.com > wrote: > > > I just want to remove one thing go getted, not the entire cache. > > For new features one can fill a proposal. If accepted, a follow-up > with the

Re: [go-nuts] Re: go get v git clone

2021-03-13 Thread arthurwil...@gmail.com
On Saturday, March 13, 2021 at 10:02:50 AM UTC-6 Jan Mercl wrote: > On Sat, Mar 13, 2021 at 4:57 PM arthurwil...@gmail.com > wrote: > > > OK I'll try and figure out how to do that. What is a CL? > > Change List. A patch against the repository that implements a feature, > fixes a bug etc.

Re: [go-nuts] Re: go get v git clone

2021-03-13 Thread Jan Mercl
On Sat, Mar 13, 2021 at 4:57 PM arthurwil...@gmail.com wrote: > OK I'll try and figure out how to do that. What is a CL? Change List. A patch against the repository that implements a feature, fixes a bug etc. -- You received this message because you are subscribed to the Google Groups

Re: [go-nuts] Re: go get v git clone

2021-03-13 Thread arthurwil...@gmail.com
On Saturday, March 13, 2021 at 8:44:44 AM UTC-6 Jan Mercl wrote: > On Sat, Mar 13, 2021 at 3:35 PM arthurwil...@gmail.com > wrote: > > > I just want to remove one thing go getted, not the entire cache. > > For new features one can fill a proposal. If accepted, a follow-up > with the

Re: [go-nuts] Re: go get v git clone

2021-03-13 Thread Jan Mercl
On Sat, Mar 13, 2021 at 3:35 PM arthurwil...@gmail.com wrote: > I just want to remove one thing go getted, not the entire cache. For new features one can fill a proposal. If accepted, a follow-up with the implementation CL is very nice -- You received this message because you are subscribed

[go-nuts] Re: go get v git clone

2021-03-13 Thread arthurwil...@gmail.com
On Friday, March 12, 2021 at 11:13:44 PM UTC-6 Carla Pfaff wrote: > You use git clone. Go get is for adding a dependency to a project. > > Also how do I delete something I go getted? >> > > ~/go/pkg/mod is just a local cache, nothing you work in. You can clear the > whole module cache with

Re: [go-nuts] Re: go get v git clone

2021-03-12 Thread Sebastien Binet
One has to admit this is a bit of an unfortunate regression in the 'go get' workflow. Especially for 'vanity import' packages. What's the repository holding the sources for e.g. 'golang.org/x/tools' or 'gioui.org' ? It used to be really simple to fetch any 'go get'-import-able project. Now, not

[go-nuts] Re: go get v git clone

2021-03-12 Thread 'Carla Pfaff' via golang-nuts
You use git clone. Go get is for adding a dependency to a project. Also how do I delete something I go getted? > ~/go/pkg/mod is just a local cache, nothing you work in. You can clear the whole module cache with go clean -modcache -- You received this message because you are subscribed to