zoukankan      html  css  js  c++  java
  • github+jenkins+maven+docker自动化构建部署

    1.github+jenkins+maven+docker自动化构建部署参考文档:

    https://blog.csdn.net/njzcx/article/details/80979157

    2.MAVEN安装验证文档

    https://www.cnblogs.com/116970u/p/11211963.html

    3.GitHub Hook Jenkins

    https://www.cnblogs.com/hd92/p/11138010.html

    结果:Jenkins没有公网地址,所以提示webhook提示无法访问服务器

     GIT

    1.git创建分支

    https://blog.csdn.net/u014330763/article/details/80026238

    2.git记录github账号

    https://www.cnblogs.com/yimingwang/p/9593166.html

    3.git push -u origin master

    上传本地当前分支代码到master分支。git push是上传本地所有分支代码到远程对应的分支上。

    4.git修改和提交:https://www.cnblogs.com/AmyHu/p/10796655.html

    git status

    git diff pom.xml

    git add pom.xml

    git status

    git commit -m "nodify pom.xml"

    git push

    5.git push 撤销

    https://www.cnblogs.com/codebook/p/10074049.html

    git revert HEAD
    git push origin master
    revert是放弃指定提交的修改,但是会生成一次新的提交,需要填写提交注释,以前的历史记录都在;
  • 相关阅读:
    以太坊:深入理解Solidity-Solidity v0.5.0 重大更新
    以太坊:深入理解Solidity-合约
    以太坊:深入理解Solidity-表达式和控制结构
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
  • 原文地址:https://www.cnblogs.com/cevinchen/p/11488348.html
Copyright © 2011-2022 走看看