配置git: git config --global user.name "XXX" git config --gloaal user.email "XXX@...com" 文件在用户目录下 .gitconfig 中,可以手动删除 关联远程仓库 转到工程目录下 为了下次连接远程仓库不用输入密码,设置 ...
分类:
其他好文 时间:
2021-04-19 15:55:18
阅读次数:
0
(Jenkins相关知识) 认识Jenkins 持续集成 持续集成 Continuous integration (CI): 1:概念作用 每个小组分别负责各个模块的开发,模块独立测试虽然可以通过,上线之前把所有模块整合到一起测试会发现很多问题,解决的方法无非就是把代码返工修改,但是可能还会存在问题 ...
分类:
其他好文 时间:
2021-04-19 15:46:29
阅读次数:
0
每隔 0.5 秒输出当前 .git 目录的文件 watch -n .5 "tree .git" 需要安装 watch 和 tree 命令, brew install watch brew install tree ...
分类:
系统相关 时间:
2021-04-19 15:36:48
阅读次数:
0
(Git基础知识) 认识Git 版本控制 版本控制是一种记录文件内容变化,方便以后查阅特定版本修改情况的系统 版本控制的发展史 1:本地版本控制系统 主要是采用简单的数据库来记录文件历次更新的差异 在硬盘上保存文件修订前后的变化 那么,上面这种控制系统,只能在本地使用,怎么能让不同的开发者协同工作呢 ...
分类:
其他好文 时间:
2021-04-19 15:33:35
阅读次数:
0
postman官网下载地址https://www.postman.com/downloads/ postman汉化包https://github.com/hlmd/Postman-cn/releases 1.首先从官网下载postMan安装包 2.下载postMan 汉化包(app.zip) 3.将 ...
分类:
其他好文 时间:
2021-04-19 14:44:14
阅读次数:
0
前提条件: 已安装centos、docker nginx搭建方式: 1.首先进入centos系统,打开命令行 docker pull nginx:1.17.9 --安装指定版本nginx,这里选择1.17.9据说比较稳定 2.启动nginx docker run -p 80:80 nginx:1.1 ...
分类:
Web程序 时间:
2021-04-19 14:38:17
阅读次数:
0
https://www.git-scm.com/docs/git-pull https://www.runoob.com/git/git-pull.html https://www.yiibai.com/git/git_pull.html https://www.runoob.com/git/git ...
分类:
其他好文 时间:
2021-04-19 14:14:27
阅读次数:
0
https://www.git-scm.com/docs/git-pull https://www.runoob.com/git/git-pull.html https://www.yiibai.com/git/git_pull.html https://www.runoob.com/git/git ...
分类:
其他好文 时间:
2021-04-19 14:13:33
阅读次数:
0
一、前期的准备工作 1,JDK、MySQL、eclipse、tomcat、maven的下载安装 2、配置好maven的环境变量 3、配置maven的远程仓库地址 4、配置eclipse里面maven的Installations、user settings 二、项目准备 1、从GIT上download ...
分类:
其他好文 时间:
2021-04-16 12:25:05
阅读次数:
0
1.简介 rancher 简化了 k8s操作的软件,通过rancher可以在不用关心k8s底层通过图形化界面直接部署微服务. harbor 类似于docker hub 的私有仓库,docker可以通过docker pull 拉取镜像. jenkins 自动化部署工具,可以自定义脚本和执行时机. ra ...
分类:
其他好文 时间:
2021-04-16 12:24:17
阅读次数:
0