Update .gitignore for Mac environment: replace Windows Maven repository paths with Mac paths
This commit is contained in:
parent
6a7eb68240
commit
210503269d
|
|
@ -23,13 +23,17 @@ buildNumber.properties
|
||||||
.mvn/timing.properties
|
.mvn/timing.properties
|
||||||
.mvn/wrapper/maven-wrapper.jar
|
.mvn/wrapper/maven-wrapper.jar
|
||||||
|
|
||||||
# Maven repository directories and D:/develop/soft 目录
|
# Maven 本地仓库目录 (Mac 环境)
|
||||||
D:\develop\soft/
|
~/.m2/repository/
|
||||||
**/D:\develop\soft/
|
**/.m2/repository/
|
||||||
D:/develop/soft/
|
.m2/repository/
|
||||||
**/D:/develop/soft/
|
/Users/*/\.m2/repository/
|
||||||
D:\\develop\\soft/
|
|
||||||
**/D:\\develop\\soft/
|
# 清理项目中的 Windows 路径目录
|
||||||
|
**/D:\develop\soft\maven_config\repository/
|
||||||
|
**/D:/develop/soft/maven_config/repository/
|
||||||
|
D:\develop\soft\maven_config\repository/
|
||||||
|
D:/develop/soft/maven_config/repository/
|
||||||
|
|
||||||
# IDE 相关文件
|
# IDE 相关文件
|
||||||
.idea/
|
.idea/
|
||||||
|
|
@ -66,3 +70,5 @@ bin/
|
||||||
|
|
||||||
# 依赖目录
|
# 依赖目录
|
||||||
node_modules/
|
node_modules/
|
||||||
|
.gitignore
|
||||||
|
D:/develop/soft/maven_config/repository/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.jar.sha1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue