整合

一、maven 的 setiing文件

  1. 修改 apache-maven-3.6.3\conf\settings.xml 
    <?xml version="1.0" encoding="UTF-8"?>
    
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    
        <pluginGroups>
        </pluginGroups>
    
        <proxies>
        </proxies>
    
        <servers>
        </servers>
    
        <mirrors>
    
            <!-- 阿里云 Maven 镜像服务器配置 -->
            <mirror>
                <id>aliyun</id>
                <name>aliyun Maven</name>
                <mirrorOf>*</mirrorOf>
                <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            </mirror>
     
        </mirrors>
        <profiles>
    
        </profiles>
        <activeProfiles>
        </activeProfiles>
    
    </settings>

  2. idea 插件  lombok、mybatisx
  3. git
    1. 打开git.bash
      #配置用户名
      git config --global user.name "gys0"
      #配置邮箱
      git config --global user.email "593107758@qq.com"
    2. ssh 本地连接
      进入 git bash:使用:ssh-keygen -t rsa -C "593107758@qq.com"命令连续三次回车。
      查看密钥:cat ~/.ssh/id_rsa.pub
      登录进入 gitee,在设置里面找到 SSH KEY 将.pub文件的内容粘(密钥)贴进去
      使用:ssh -T git@gitee.com 测试是否成功
Java,Maven ,添加开源许可证 Apache-2.0 ,设置模板:readme文件  ,选择模型:生产/开发模型 (支持 master/develop 类型分支)
posted @ 2021-08-21 18:49  gys2020  阅读(108)  评论(0编辑  收藏  举报