Answers for "how to gitignore a sub folder"

13

git ignore folder command

$ touch .gitignore
Posted by: Guest on June-09-2020
0

gitignore subfolders

./folder/subfolders

or

**/bin/Debug/
**/bin/Release/

With version 1.8.2 of git, you can also use the ** wildcard to match
any level of subdirectories:
Posted by: Guest on December-14-2021

Code answers related to "how to gitignore a sub folder"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language