Categories
How to properly remove venv from github repository?
I want to remove the venv folder from the repository, how to do it correctly?
Answer the question
In order to leave comments, you need to log in
git rm -r venv git commit -m "Deleted venv" git push origin
It would also be nice to add a line to .gitignore: venv/*
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question