1:删除当前目录下 后缀为 ”.***“的文件 find -name "*.txt" -exec rm -f '{}' \; 删除后缀为.txt的文件 2:清空某个文件的内容 echo "" > filename ...
分类:
系统相关 时间:
2021-05-24 02:31:05
阅读次数:
0
1 查看下载的镜像:docker images 2 查看正在运行的容器:docker ps 查看所有容器:docker ps -a 3 下载jdk: docker pull openjdk:8-jdk-alpine 4 删除镜像/容器: docker rmi imageID docker rm co ...
分类:
其他好文 时间:
2021-05-24 02:18:30
阅读次数:
0
第一步:查看提交历史,查看想要回退版本的版本号 git log src/app.vue 第二步:回滚某个文件到指定版本 git checkout 版本号 src/app.vue 第三步:提交到本地仓库-拉取合并代码-提交到远程 git commit -m '提交描述' git pull git pu ...
分类:
其他好文 时间:
2021-05-24 02:15:14
阅读次数:
0
1、Ansible简介 定义:Ansible是一个开源部署工具 Ansible与Chef,Saltstack的不同: Chef Ruby语言编写,C/S架构,配置需要Git依赖,Recipe脚本编写规范,需要编程经验 Saltstack Python语言编写,C/S架构,模块化配置管理,YAML脚本 ...
分类:
其他好文 时间:
2021-05-24 02:10:44
阅读次数:
0
什么是Git? Git是目前世界上最先进的分布式版本控制系统(没有之一)。 Git 与 SVN 区别? **Git 是分布式的,SVN 不是。**这是 Git 和其它非分布式的版本控制系统,例如 SVN,CVS 等,最核心的区别。 **Git 把内容按元数据方式存储,而 SVN 是按文件。**所有的 ...
分类:
其他好文 时间:
2021-05-24 02:08:12
阅读次数:
0
前 如果你想在Spring Cloud Gateway中使用Sentinel Starter,你需要添加Spring - Cloud -alibaba- Sentinel - Gateway依赖,并添加Spring - Cloud - Starter - Gateway依赖,让Spring Clou ...
分类:
其他好文 时间:
2021-05-24 01:48:53
阅读次数:
0
PS C:\ycm\test\ts-newProjet> git pull origin master * branch master -> FETCH_HEAD fatal: refusing to merge unrelated histories 在新建项目时报refusing to merg ...
分类:
其他好文 时间:
2021-05-24 01:24:52
阅读次数:
0
使用云服务器git clone某个项目时,遇到如下问题: fatal: Out of memory, malloc failed (tried to allocate 2000000000 bytes) 百度后找到如下解决方法: sudo mkdir -p /opt/temp sudo dd if= ...
分类:
其他好文 时间:
2021-05-24 00:26:08
阅读次数:
0
gitlab CI/CD架构: gitlab CI/CD步骤: 安装Runner: Linux服务器安装: ?Linux安装文档:https://docs.gitlab.com/runner/install/linux-repository.html curl -L https://packages ...
分类:
其他好文 时间:
2021-05-24 00:17:04
阅读次数:
0
一、新建项目,绑定GIT 1、新建spring boot项目 2、路径选择git本地文件地址 3、新的项目文件绑定git,将远程的git文件拷贝至项目中 二、修改文件,使用IDEA操作GIT 1、提交,右上角工具栏 2、选择需要提交的信息,写注释,并commit 3、同步到远程仓库: 三、命令行提交 ...
分类:
其他好文 时间:
2021-05-23 23:54:06
阅读次数:
0