designed for testing and extensibility
(but generally it should be pretty stableish).
go get -u go.chromium.org/gae/...
See the godocs.
- Branch
master
contains the latest code.
- Sign the Google CLA.
- Make sure your
user.email
anduser.name
are configured ingit config
. - Install test-only packages:
go get -u -t go.chromium.org/luci/client/...
- Install the pcg git hook:
go get -u github.com/maruel/pre-commit-go/cmd/... && pcg
Run the following to setup the code review tool and create your first review:
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $HOME/src/depot_tools
export PATH="$PATH:$HOME/src/depot_tools"
cd $GOROOT/go.chromium.org/luci
git checkout -b work origin/master
# hack hack
git commit -a -m "This is awesome"
# We use Gerrit for code review. Visit
# https://chromium-review.googlesource.com/new-password
# and follow instructions.
git cl upload -s --r-owners
# This will upload your change to Gerrit and pick a random owner (as defined
# in the OWNERS file) for review.
# Wait for approval and submit your code through Commit Queue.
# Commit queue will test your change on multiple platforms and land it
# automatically.
# Once you get a review with comments, you can do additional commits to your
# feature branch, and then upload again to update the review in gerrit.
$ git cl upload
Use git cl help
and git cl help <cmd>
for more details.