Git - ignore filter file

Git - ignore

Official website: https://git-scm.com/docs/gitignore

Today in the warehouse is initialized when considering how to filter unwanted file into the version control system. So go to access a lot of official documents.

Want to filter:

  1. New .ignore file in the root directory
  2. Files with .ignore
src/main/webapp/WEB-INF/classes/
src/main/webapp/WEB-INF/lib/
target/
.settings/
.classpath
.project
lis7.iml
.idea/
*/overlays
*.iml
filelog.map
aio/lib
aio/src
.ignore
**/.flattened-pom.xml

PS: This file is ignore my own use, you can use the official GitHub template provided, or use the official syntax to write their own

Guess you like

Origin www.cnblogs.com/bigbaby/p/12070863.html
Recommended