Skip to main content
Bazel Documentation home page
HEAD
English
Search...
⌘K
Module Registry
Blog
Github
Search...
Navigation
VENDOR.bazel files
Tutorials
How-to Guides
Reference
Explanation
Build Encyclopedia
Bazel BUILD Encyclopedia of Functions
C / C++ Rules
Java Rules
Python Rules
Objective-C Rules
Protocol Buffer Rules
Shell Rules
Common definitions
General Rules
Extra Actions Rules
Make Variables
Language Reference
Language
.bzl style guide
One-Page Overview
Global functions
Technical Specifications
Bazel Glossary
Skyframe
Build Event Protocol
Build Event Protocol Examples
Build Event Protocol Glossary
Recommended Rules
Remote Execution Services
Style Guides
BUILD Style Guide
Bazel docs style guide
Releases & Compatibility
Release
Rolling
Backward Compatibility
Rule Compatibility
Getting Help
Getting Help
Policy
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