gitignore中常见需要被无视的文件

gitignore中常见的需要被忽略的文件:例如各个系统、一些软件会自动生成的文件,主要适用于web项目.

复制后,保存进.gitignore文件中即可。

# Project
node_modules
bower_components
dist/*.map
/_*
npm-debug.log

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride
.idea

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

 

posted @ 2017-07-19 14:50  哈姆PP  阅读(799)  评论(0编辑  收藏  举报