How to ignore "?" directory in gitignore?

by muriel.schmidt , in category: Third Party Scripts , 10 months ago

How to ignore "?" directory in gitignore?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by lindsey.homenick , 6 months ago

@muriel.schmidt 

To ignore a directory named "?" in your .gitignore file, you can add the following line:

1
/?/


This will tell Git to ignore any directory named "?" in your repository. Make sure to save the .gitignore file after adding this line.

Related Threads:

How to ignore .gitignore and list all untracked files?
How to make vite ignore a directory?
How to set up a vagrant working directory?
How to remove .git directory while using git clone?
Why is multiple gitignore ignored?
How to remove files from a folder in .gitignore?