Skip to main content
Bazel Documentation home page
HEAD
English
Search...
⌘K
Module Registry
Blog
Github
Search...
Navigation
VENDOR.bazel files
About Bazel
Getting started
User guide
Reference
Extending
Community
Concepts
Extension Overview
Writing rules
Rules Tutorial
Creating a Symbolic Macro
Creating a Legacy Macro
Using Macros to Create Custom Verbs
Language
.bzl style guide
Challenges of Writing Rules
Windows
Distributing rules
Testing
Optimizing Performance
Deploying Rules
APIs
One-Page Overview
Global functions
On this page
Members
ignore
Parameters
pin
Parameters
VENDOR.bazel files
Methods available in VENDOR.bazel files.
Members
ignore
pin
ignore
Copy
Ask AI
None ignore(*args)
Ignore this repo from vendoring. Bazel will never vendor it or use the corresponding directory (if exists) while building in vendor mode.
Parameters
ParameterDescription
args
required
The canonical repo names of the repos to ignore.
pin
Copy
Ask AI
None pin(*args)
Pin the contents of this repo under the vendor directory. Bazel will not update this repo while vendoring, and will use the vendored source as if there is a —override_repository flag when building in vendor mode
Parameters
ParameterDescription
args
required
The canonical repo names of the repos to pin.
⌘I