Re: [go-nuts] cloning source code with pull request

2024-08-09 Thread Arkadiusz Drabczyk
On Thu, Aug 08, 2024 at 09:06:22AM +0300, Roland Müller wrote: > Hello, > > Shouldn't git-review plugin for git work for googlesource.com too? > > After installing the tool and setting up in your local clone one can download > any gerrit change locally in one step: > - git review -d # > - git rev

Re: [go-nuts] cloning source code with pull request

2024-08-07 Thread Roland Müller
Hello, Shouldn't git-review plugin for git work for googlesource.com too? After installing the tool and setting up in your local clone one can download any gerrit change locally in one step: - git review -d # - git review -d Uploading patches for a chnage or creating new changes would done with

Re: [go-nuts] cloning source code with pull request

2024-08-07 Thread Arkadiusz Drabczyk
On Tue, Aug 06, 2024 at 02:24:41PM -0700, Leah Stapleton wrote: > Hello,  > > > If I wanted to clone the google source code with a pending pull request (such > as https://go-review.googlesource.com/c/go/+/596035 ) how would I do it?  > > My goal is to test the pull request. $ git clone https://

Re: [go-nuts] cloning source code with pull request

2024-08-06 Thread Kurtis Rader
In most projects you would simply clone the source for the version being patched then download and apply the fix. For source code managed by Git I like to use the `hub apply-mail -3` command to download a patch from a Git repository and apply it. I've never done this for Go but would be mildly sur