You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Software_Architecture/.gitignore

49 lines
777 B

# 编译生成文件 (Build artifacts)
build/
*.o
*.so
*.dll
*.exe
moc_*.cpp
ui_*.h
qrc_*.cpp
Makefile
# Qt临时文件 (Qt temporary files)
*.pro.user
*.pro.user.*
.qmake.stash
# 个人配置文件 (Personal configuration files)
# 忽略个人数据库配置,避免团队成员间的配置冲突
# Ignore personal database configuration to avoid conflicts between team members
src/Client/config/database.ini
# 环境配置文件 (Environment configuration files)
.env
.env.local
.env.development
.env.production
# 日志文件 (Log files)
*.log
logs/
# 临时文件 (Temporary files)
*.tmp
*.temp
*~
# IDE配置文件 (IDE configuration files)
.vscode/
.idea/
*.swp
*.swo
# 系统文件 (System files)
.DS_Store
Thumbs.db
# 备份文件 (Backup files)
*.bak
*.backup