0
点赞
收藏
分享

微信扫一扫

Git 中的.gitignore文件的作用及配置

爱喝酒的幸福人 2022-03-12 阅读 99

.gitignore 文件


############################################################
### Java ###
*.class
classes/
# Mobile Tools for Java (J2ME)
.mtj
.tmp/

### Package Files ###
*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

############################################################
### Eclipse IDE file###############################
.groovy/
.settings/
.metadata
.project
.classpath
.loadpath
# Locally stored "Eclipse launch configurations"
*.launch
local.properties
### Itellij Idea File  ###############################
*.ipr
*.iml
*.iws
.idea
.idea/

############################################################
### Compile file ###
bin/
tmp/
*.tmp
*.bak

############################################################
### Maven ###
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
backup.properties

.gradle
.flattened-pom.xml


# CDT-specific
.cproject

# PDT-specific
.buildpath

# sbteclipse plugin
.target

############################################################
*.log
log.txt

############################################################
### OSX ###########################
.DS_Store
.AppleDouble
.LSOverride
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
# Network Trash Folder
Temporary Items
.apdisk
### Linux ###########################
*~
*.swp
*~.nib
### Windows ###########################
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Windows shortcuts
*.lnk
# Thumbnails
._*
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Recycle Bin used on file shares
$RECYCLE.BIN/
############################################################
# KDE directory preferences
.directory

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

# project run info
CY_LOG_HOME_IS_UNDEFINED/
举报

相关推荐

0 条评论