We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d23252f commit 4238913Copy full SHA for 4238913
changeCommit.sh
@@ -0,0 +1,10 @@
1
+ # changeCommit.sh
2
+ git filter-branch --commit-filter '
3
+ if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ];
4
+ then
5
+ GIT_AUTHOR_NAME="程序员小富";
6
+ GIT_AUTHOR_EMAIL="[email protected]";
7
+ git commit-tree "$@";
8
+ else
9
10
+ fi' HEAD
springboot101/数据库/springboot-dynamic-datasource/pom.xml
@@ -69,7 +69,7 @@
69
<plugin>
70
<groupId>org.springframework.boot</groupId>
71
<artifactId>spring-boot-maven-plugin</artifactId>
72
- </plugin>
+ </plugin>
73
</plugins>
74
</build>
75
</project>
0 commit comments