Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (go version)?
go version go1.10.3 linux/amd64
What version of git-codereview are you using?
golang/review@3faf270
Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (go env)?
GOBIN=""
GOCACHE="/home/vimeo/.cache/go-build"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/vimeo/godep"
GORACE=""
GOROOT="/home/vimeo/go"
GOTMPDIR=""
GOTOOLDIR="/home/vimeo/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build902163312=/tmp/go-build -gno-record-gcc-switches"
What did you do?
Cloned the x/image repo as per its README:
$ git clone https://go.googlesource.com/image $GOPATH/src/golang.org/x/image
$ cd $GOPATH/src/golang.org/x/image
Signed up for and setup cookies for Go's Gerrit system (I had already set it up since previosly contributing, technically.)
Installed git-codereview as per the documentation:
$ go get -u golang.org/x/review/git-codereview
Created a new branch for work, and did my changes, as per the documentation:
$ git checkout -b newbranch
$ vim whatever.go
$ git add whatever.go
$ git codereview change
What did you expect to see?
I expected git codereview change to add a Change-Id: line to the commit messages.
What did you see instead?
It did not add a Change-Id: to the commit message.
Workaround / extra information which could be important
If I do not follow the documentation, and instead of using git checkout -b newbranch, I use git codereview change newbranch, it does add the Change-Id: line as required. But this does not match what the official documentation on golang.org says to do. It is also worth noting this occurs on the x/imagerepo; I haven't tried the officialgo` repo.
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version)?go version go1.10.3 linux/amd64What version of git-codereview are you using?
golang/review@3faf270
Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env)?What did you do?
Cloned the
x/imagerepo as per its README:Signed up for and setup cookies for Go's Gerrit system (I had already set it up since previosly contributing, technically.)
Installed
git-codereviewas per the documentation:Created a new branch for work, and did my changes, as per the documentation:
What did you expect to see?
I expected
git codereview changeto add aChange-Id:line to the commit messages.What did you see instead?
It did not add a
Change-Id:to the commit message.Workaround / extra information which could be important
If I do not follow the documentation, and instead of using
git checkout -b newbranch, I usegit codereview change newbranch, it does add theChange-Id:line as required. But this does not match what the official documentation on golang.org says to do. It is also worth noting this occurs on the x/imagerepo; I haven't tried the officialgo` repo.