日常使用命令
2023-10-21 本文已影响0人
追风还是少年
maven
- 清理并安装(跳过测试),并且强制更新本地jar
mvn clean install -U -DskipTests=true- 清理并推送到maven远程仓库,并且强制更新本地jar
mvn clean deploy -U -DskipTests=true
setting.xml中配置切换为国内仓库镜像,加速maven jar包下载
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
git
- 当要克隆的项目太大时候,加上--depth=1表示克隆最新分支,加上-b 表示下载特定分支
git clone --depth=1 https://github.com/apache/skywalking.git
git clone --depth=1 -b release-1.7 https://github.com/alibaba/Sentinel.git- git remote -v 获取远程仓库url地址