Skip to content

Commit 4238913

Browse files
committed
增加修改脚本
1 parent d23252f commit 4238913

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

changeCommit.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
git commit-tree "$@";
10+
fi' HEAD

springboot101/数据库/springboot-dynamic-datasource/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<plugin>
7070
<groupId>org.springframework.boot</groupId>
7171
<artifactId>spring-boot-maven-plugin</artifactId>
72-
</plugin>
72+
</plugin>
7373
</plugins>
7474
</build>
7575
</project>

0 commit comments

Comments
 (0)