Answers for "git ignore command line"

15

.gitignore

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

gitignore command

There is no explicit git ignore command; instead, the . gitignore file must be edited and committed by hand when you have new files that you wish to ignore. The . gitignore files hold patterns that are matched against file names in your repository to determine whether or not they should be ignored.
Posted by: Guest on September-14-2021

Browse Popular Code Answers by Language