How to Ignore Uploading Folders and Files to GitHub
For example .venv
folder
-
Open your project folder in VS Code.
-
Open
.gitignore
file in the root of the project -
Add the following line to
.gitignore
:.venv/
-
Save the file. then Git will ignore the
.venv
folder, and it won’t be tracked in your repository.
If .venv
was already committed before, you’ll need to remove it from Git history using:
git rm -r --cached .venv
git commit -m "Removed .venv from repository"
git push origin main # or your current branch
You can check if .venv
is ignored by Git using the following command
git check-ignore -v .venv