Answers for "read gitignore file"

20

how to use gitignore to ignore a folder

You can ignore entire directories, just by including their paths and putting a / on the end:

1
2
node_modules/
logs/
Posted by: Guest on May-13-2020
13

.gitignore

node_modules
.DS_Store
.env
Posted by: Guest on November-11-2019
0

read gitignore file

// in a linux base console, in the root proyect where the .gitignore file is: 

cat ./.gitignore
Posted by: Guest on August-09-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language