From efd4652faa7c7d6329a8c995929fb37f7dfd8663 Mon Sep 17 00:00:00 2001 From: Abhishek Upadhye <113502961+AbhiUpadhye@users.noreply.github.com> Date: Thu, 5 Jun 2025 19:51:15 +0530 Subject: [PATCH] List `.gitignore` in project init files (#13855) Fixes https://github.com/astral-sh/uv/issues/13639 Just added a missing `.gitignore` file in the docs, so that there would be no confusion for readers referring it. Thank you! --- docs/guides/projects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/projects.md b/docs/guides/projects.md index efea187db..b86d02861 100644 --- a/docs/guides/projects.md +++ b/docs/guides/projects.md @@ -29,7 +29,7 @@ $ uv init uv will create the following files: ```text -. +├── .gitignore ├── .python-version ├── README.md ├── main.py