1. 配置SVN环境
点击 File —> Settings —> Version Control —> Subversion ,配置SVN
TortoiseSVN的 bin⽬录下⾯如果没有svn.exe
是因为在安装TortoiseSVN的时候没有勾选指定安装项,添加command line client tools
2 选择版本控制方式
3 配置svn仓库
4 关联svn仓库
选择 1.8 Format,点击 OK
5 配置svn提交忽略的文件
# 通用忽略
.idea/
*.iml
.DS_Store
Thumbs.db
# Java项目
target/
*.log
*.class
*.jar
# Web项目
# node_modules/
# dist/
# build/
# npm-debug.log
# Python项目
# __pycache__/
# *.pyc
# venv/
# 配置文件
# .env
# *.properties
# mvn
.mvn/
.gitignore
mvnw
mvnw.cmd