Answers for "git ignore folder command"

9

git ignore folder command

$ touch .gitignore
Posted by: Guest on June-09-2020
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
11

gitignore folder

in .gitignore:
	folder/
Posted by: Guest on July-19-2020
2

how to git ignore a file

git config --global core.excludesfile ~/.gitignore_global
Posted by: Guest on October-08-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language