This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // git 拉取指定commit | |
| // git 版本 2.27 | |
| > git init | |
| > git remote add origin {git_address} | |
| > git -c protocol.version=2 fetch --depth=1 origin {commit_id} | |
| > git reset --hard FETCH_HEAD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <build> | |
| <sourceDirectory>${project.basedir}/src/main/lombok/</sourceDirectory> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.projectlombok</groupId> | |
| <artifactId>lombok-maven-plugin</artifactId> | |
| <version>1.18.20.0</version> | |
| <executions> | |
| <execution> | |
| <id>delombok</id> |
OlderNewer