Answers for "gitignore folders and subfolders"

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
-1

gitignore a specific file

$ echo debug.log >> .gitignore $ git rm --cached debug.log rm 'debug.log' $ git commit -m "Start ignoring debug.log"
Posted by: Guest on January-13-2021

Code answers related to "gitignore folders and subfolders"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language