You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
iannucci bd604a16cb Revert of Whitespace change to trigger cipd package for git installer. (patchset #1 id:1 of https://chromiumcodereview.appspot.com/2251883002/ )
Reason for revert:
need another build :)

Original issue's description:
> Whitespace change to trigger cipd package for git installer.
>
> TBR=phajdan@chromium.org, vadimsh@chromium.org
> BUG=635421
>
> Committed: 31c2115e6a

TBR=phajdan.jr@chromium.org,vadimsh@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=635421

Review-Url: https://codereview.chromium.org/2252983002
9 years ago
bootstrap Make git version numbers external to batch script. 9 years ago
fetch_configs
git-templates
infra Roll recipe dependencies (trivial). 9 years ago
man
recipe_modules Cleanup old debugging code. 9 years ago
support
testing_support Support additional user presubmit scripts named PRESUBMIT*.py. 9 years ago
tests Support additional user presubmit scripts named PRESUBMIT*.py. 9 years ago
third_party
win_toolchain
zsh-goodies
.gitignore
.style.yapf
LICENSE
OWNERS
PRESUBMIT.py
README.gclient.md Overhaul the README files a bit. 9 years ago
README.git-cl.md Overhaul the README files a bit. 9 years ago
README.md Revert of Whitespace change to trigger cipd package for git installer. (patchset #1 id:1 of https://chromiumcodereview.appspot.com/2251883002/ ) 9 years ago
README.testing
WATCHLISTS
annotated_gclient.py
apply_issue
apply_issue.bat
apply_issue.py
auth.py
breakpad.py
buildbucket.py
cbuildbot
checkout.py
chrome-update-create-task.bat
chrome-update.bat
chrome-update.py
chrome_set_ver
cit
cit.bat
cit.py
clang-format
clang-format.bat
clang_format.py
codereview.settings
commit_queue
commit_queue.bat
commit_queue.py
cpplint.bat
cpplint.py
cpplint_chromium.py
create-chromium-git-src
create-ntfs-junction.c
create-ntfs-junction.exe
cros
cros_sdk
dart_format.py
depot-tools-auth
depot-tools-auth.bat
depot-tools-auth.py
download_from_google_storage
download_from_google_storage.bat
download_from_google_storage.py
drover
drover.bat
drover.py
fetch
fetch.bat
fetch.py
fix_encoding.py
gcl
gcl.bat
gcl.py
gclient
gclient-new-workdir.py
gclient.bat
gclient.py
gclient_completion.sh
gclient_scm.py
gclient_utils.py Update top_dir with git repo root just when cwd locate in a git repo. 9 years ago
gerrit_util.py
git-auto-svn
git-cache
git-cherry-pick-upload
git-cl
git-crrev-parse
git-crsync
git-drover
git-find-releases
git-footers
git-freeze
git-gs
git-hyper-blame
git-map
git-map-branches
git-mark-merge-base
git-nav-downstream
git-nav-upstream
git-new-branch
git-number
git-rebase-update
git-rename-branch
git-reparent-branch
git-retry
git-runhooks
git-squash-branch
git-thaw
git-upstream-diff
git_auto_svn.py
git_cache.py
git_cherry_pick_upload.py
git_cl.py git-cl status: allow querying just the status of current CL 9 years ago
git_common.py Fix broken git tests on mac. 9 years ago
git_dates.py
git_drover.py
git_find_releases.py
git_footers.py
git_freezer.py
git_hyper_blame.py
git_map.py
git_map_branches.py
git_mark_merge_base.py
git_nav_downstream.py
git_new_branch.py
git_number.py
git_rebase_update.py
git_rename_branch.py
git_reparent_branch.py
git_retry.py
git_squash_branch.py
git_upstream_diff.py
gn
gn.bat
gn.py
gsutil.py
my_activity.py
my_reviews.py
ninja
ninja-linux32
ninja-linux64
ninja-mac
ninja.exe
owners.py
owners_finder.py
patch.py
presubmit_canned_checks.py Update "git cl format" for GN changes. 9 years ago
presubmit_support.py Support additional user presubmit scripts named PRESUBMIT*.py. 9 years ago
profile.xml
pylint
pylint.py
pylintrc Revert "Revert "pylint: upgrade to 1.3.1"" 11 years ago
python_runner.sh
recipes.py upload recipe bootstrap script (6a4b2e4) 9 years ago
repo
rietveld.py
roll-dep
roll-dep-svn
roll-dep-svn.bat
roll-dep.bat
roll_dep.py
roll_dep_svn.py
scm.py
setup_color.py
subcommand.py
subprocess2.py
trychange.py Change default codereview instance to one we maintain. 9 years ago
update_depot_tools
update_depot_tools.bat
upload_to_google_storage.py
watchlists.py
weekly
wtf

README.md

depot_tools

This package contains tools for working with Chromium development. It requires python 2.7.

Tools

The most important tools are:

  • fetch: A gclient wrapper to checkout a project. Use fetch --help for more details.
  • gclient: A meta-checkout tool. Think repo or git submodules, except that it support OS-specific rules, e.g. do not checkout Windows only dependencies when checking out for Android. Use gclient help for more details and README.gclient.md.
  • git cl: A code review tool to interact with Rietveld or Gerrit. Use git cl help for more details and README.git-cl.md.
  • roll-dep: A gclient dependency management tool to submit a dep roll, updating a dependency to a newer revision.

There are a lot of git utilities included.

Updating

depot_tools updates itself automatically when running gclient tool. To disable auto update, set the environment variable DEPOT_TOOLS_UPDATE=0.

To update package manually, run update_depot_tools.bat on Windows, or ./update_depot_tools on Linux or Mac.

On Windows only, running gclient will install svn (not for long), git, python.

Contributing

To contribute change for review:

git new-branch <somename>
# Hack
git add .
git commit -a -m "Fixes goat teleporting"
# find reviewers
git cl owners
git log -- <yourfiles>

# Request a review.
git cl upload -r reviewer1@chromium.org,reviewer2@chromium.org --send-mail

# Edit change description if needed.
git cl desc

# If change is approved, flag it to be commited.
git cl set-commit

# If change needs more work.
git rebase-update
...
git cl upload -t "Fixes goat teleporter destination to be Australia"

cpplint.py

To update cpplint.py, please submit the change upstream first at https://github.com/google/styleguide/tree/gh-pages/cpplint then copy it down.