Home > other >  How to gitignore all .md files
How to gitignore all .md files

Time:08-27

When I go to upload project, or update it on github, from git, I want to hide specific file type, all files of that kind of file, such as notes, .md files.

CodePudding user response:

Add the rule to .gitignore

*.md

CodePudding user response:

add *.md in .gitignore file, this will tell git to ignore all files that's end with .md extension

  • Related