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

猜你喜欢

转载自www.cnblogs.com/cevinchen/p/11488348.html