# 查看已安装dockeryum list installed | grep dockerrpm -qa | grep docker # 卸载旧版本(如果之前安装过的话)yum remove docker \ docker-client \ docker-client-latest \ docker ...
分类:
其他好文 时间:
2021-05-24 15:43:09
阅读次数:
0
配置方法: 在以下位置加入: <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central< ...
分类:
其他好文 时间:
2021-05-24 15:32:28
阅读次数:
0
查看远程仓库 如果想查看你已经配置的远程仓库服务器,可以运行 git remote 命令,它会列出你指定的每一个远程服务器的名称 如果是刚 clone 下来的自己的库,能看到 origin,这是 Git 起的默认名字 $ git clone https://github.com/schacon/ti ...
分类:
其他好文 时间:
2021-05-24 12:39:49
阅读次数:
0
今天想把一个本地项目推送到github【此前已经将这个项目推送到gitee!】 执行 git remote add origin +远程仓库地址 这个命令时,提示 error: remote origin already exists. 这是因为gitee&github 默认都是以 origin 这 ...
分类:
其他好文 时间:
2021-05-24 10:58:36
阅读次数:
0
远程主机指纹的作用:用于验证远程主机确实是我以前连接过的主机,而不是被DNS劫持的主机。 远程主机:ubuntu20.04系统 本地:wsl 2 的debian 10系统 所谓的主机指纹:把远程主机的公钥用一种hash算法输出一个较短的数串。 这就涉及到2个材料:1、远程主机的公钥。2、双方公用的哈 ...
分类:
其他好文 时间:
2021-05-24 10:10:47
阅读次数:
0
这篇文章主要介绍了Powershell 之批量获取文件大小的实现代码 效果图: 核心代码: $startFolder = "D:\" $colItems = (Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq $True} ...
分类:
系统相关 时间:
2021-05-24 10:08:31
阅读次数:
0
场景 在Jenkins中新建任务后,在源码管理中选择Git,并且通过用户名和密码的 凭证方式连接到Git仓库时提示: 无法连接仓库:Error performing git command: git ls-remote -h... 注: 博客: https://blog.csdn.net/badao ...
分类:
其他好文 时间:
2021-05-24 07:05:12
阅读次数:
0
1、在pom文件中先导入生成图像的依赖包 <dependency> <groupId>com.baomidou</groupId> <artifactId>kaptcha-spring-boot-starter</artifactId> <version>1.0.0</version> </depe ...
分类:
其他好文 时间:
2021-05-24 06:35:16
阅读次数:
0
git remote update origin --prune,要注意下,如果你的remote branch不是在origin下,按你得把origin换成你的名字 $ git remote update origin --prune Fetching origin remote: Counting ...
分类:
其他好文 时间:
2021-05-24 06:30:31
阅读次数:
0
近来在一天新电脑上面使用git pull 一个项目,老是提示 Access denied, 找了许多方法,ssh key这些都配置了还是不行,当时别提有多尬 这就是clone 时的提示 最终解决方法,控制面板 > 用户账户 然后找到 凭据管理器 选择Windows凭据 如图删除掉之前使用者留下的 凭 ...
分类:
数据库 时间:
2021-05-24 05:23:44
阅读次数:
0