From 604bd5ddaf8973055165b9a12c24d0a898851a41 Mon Sep 17 00:00:00 2001 From: Doug Rinckes Date: Fri, 10 Jan 2025 11:35:36 +0100 Subject: [PATCH] Add bazel module lock file to gitignore Bazel creates the lock file `MODULE.bazel.lock`, see https://bazel.build/external/lockfile. This file should not get checked into git. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index f3a0c4b3..e525c32a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # Ignore backup and swap files. *~ .*.swp +# Bazel module lock file. +MODULE.Bazel.lock # Ignore all bazel-* links. /bazel-* # Ignore outputs generated during Bazel bootstrapping.