zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    品优购注册页
    品优购详情页---产品细节模块product_detail
    品优购详情页---产品详细信息区域 iteminfo_wrap
    poj 3684
    POJ 2785
    POJ 3185
    POJ 3279
    POJ 3276
    POJ 2566
    POJ 2100
  • 原文地址:https://www.cnblogs.com/hamsterPP/p/7205767.html
Copyright © 2011-2022 走看看