# Code of Conduct We follow the [Chromium code of conduct]( https://chromium.googlesource.com/chromium/src/+/master/CODE_OF_CONDUCT.md) in our our repos and organizations, mailing lists, and other communications. # Workflow Install [depot_tools] (https://www.chromium.org/developers/how-tos/install-depot-tools). Then checkout the catapult repo. `git clone https://github.com/catapult-project/catapult.git` You can then create a local branch, make and commit your change. ``` cd catapult git checkout -t -b foo origin/master ... edit files ... git commit -a -m "New files" ``` Once you're ready for a review do: `git cl upload` Once uploaded you can view the CL in Rietveld and request a review by clicking the 'publish & mail' link. You can also click the "CQ Dry Run" link to run all the tests on your change. If you get review feedback, edit and commit locally and then do another upload with the new files. Before you commit you'll want to sync to the tip-of-tree. You can either merge or rebase, it's up to you. Then, submit your changes through the commit queue by checking the "Commit" box. Once everything is landed, you can cleanup your branch. ``` git checkout master git branch -D foo ``` # Becoming a committer If you're new to the chromium-family of projects, you will also need to sign the chrome contributors license agreement. You can sign the [Contributor License Agreement] (https://cla.developers.google.com/about/google-individual?csw=1), which you can do online. It only takes a minute. If you are contributing on behalf of a corporation, you must fill out the [Corporate Contributor License Agreement] (https://cla.developers.google.com/about/google-corporate?csw=1) and send it to us as described on that page. If you've never submitted code before, you must add your (or your organization's) name and contact info to the Chromium AUTHORS file. Next, ask an admin to add you (see [adding committers](/docs/adding-committers.md)) # Contributing from a Chromium checkout If you already have catapult checked out as part of a Chromium checkout and want to edit it in place (instead of having a separate clone of the repository), you will probably want to disconnect it from gclient at this point so that it doesn't do strange things on updating. This is done by editing the .gclient file for your Chromium checkout and adding the following lines: ``` 'custom_deps': { 'src/third_party/catapult': None, }, ``` In order to be able to land patches, you will most likely need to update the `origin` remote in your catapult checkout to point directly to this GitHub repository. You can do this by executing the following command inside the catapult folder (third_party/catapult): `git remote set-url origin git@github.com:catapult-project/catapult` # Code style See the [style guide](/docs/style-guide.md). # Individual project documentation Look to individual project documentation for more info on getting started: * [perf dashboard](/dashboard/README.md) * [systrace](/systrace/README.md) * [telemetry](/telemetry/README.md) * [trace-viewer](/tracing/README.md) # Tests Check individual project documentation for instructions on how to run tests. You can also check the current status of our tests on the [waterfall](http://build.chromium.org/p/client.catapult/waterfall). Use the "commit" checkbox in rietveld to commit through the commit queue, which automatically runs all tests. Run the tests before committing with the "CQ dry run" link. # Updating Chromium's about:tracing (rolling DEPS) Chromium's DEPS file needs to be rolled to the catapult revision containing your change in order for it to appear in Chrome's about:tracing or other third_party/catapult files. Follow the [directions for rolling DEPS] (/docs/rolling-deps.md) to do this. # Adding a new project Please read the [directory structure guide](/docs/directory-structure.md) to learn the conventions for new directories.