yum安装epel-release后yum安装软件报错 Cannot retrieve metalink for repository: epel/x86_64. Please verify its path and try again 原因是epel仓库默认使用https 解决方法: 改epel文 ...
分类:
Web程序 时间:
2020-06-19 21:13:42
阅读次数:
58
yum仓库管理 yum-config-manager 简介 # yum 主要功能是更方便的添加/删除/更新RPM 包,自动解决包的倚赖性问题,便于管理大量系统的更新问题。 # yum 可以同时配置多个资源库(Repository),简洁的配置文件(/etc/yum.conf),自动解决增加或删除 在 ...
分类:
其他好文 时间:
2020-06-19 20:45:56
阅读次数:
383
1.首先注册github账号,登录,创建新仓库 ,点击+,点击new repository 2.得到如下页面,填写仓库名,自己随便写一个名字,下面的描述可写可不写,点击Initialize this repository with a README,然后创建: 3.下载git shell,网上给了很 ...
分类:
Web程序 时间:
2020-06-18 19:25:47
阅读次数:
64
到~/.gradle/目录下创建一个 init.gradle 文件,把下面这些复制进去就 ok 了allprojects{repositories {def ALIYUN_REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/p ...
分类:
其他好文 时间:
2020-06-18 01:40:58
阅读次数:
140
repository代码: package com.fancy.miniflow.repository; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository;import org.sp ...
分类:
数据库 时间:
2020-06-17 12:57:54
阅读次数:
216
1-使用 git remote -v 查看对应的克隆地址: git remote -v origin https://github.com/username/repository.git (fetch) origin https://github.com/username/repository.gi ...
分类:
其他好文 时间:
2020-06-16 23:47:54
阅读次数:
60
目的是删除repository库目录下所有后缀名是.lastUpdated的文件,方法如下: 在本地创建一个txt文件, 将以下代码复制到文件中,将REPOSITORY_PATH值改为自己的本地仓库地址 将文件后缀改为.bat set REPOSITORY_PATH=D:\repository re ...
分类:
编程语言 时间:
2020-06-16 23:39:59
阅读次数:
69
<repositories> <repository> <id>central</id><--中央仓库--> <url>http://uk.maven.org/maven2/</url> <layout>default</layout> </repository> <repository> <id> ...
分类:
其他好文 时间:
2020-06-16 15:16:54
阅读次数:
106
Docker的常用命令帮助命令docker version docker info docker --help 镜像命令docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE hello-world latest 9f5834b25059 ...
分类:
其他好文 时间:
2020-06-16 13:19:07
阅读次数:
66
docker info:查看信息docker --help:查看用发 镜像常用命令1、docker images:查看本地容器输入后会显示以下内容: REPOSITORY:表示镜像的仓库源 TAG:镜像的标签 IMAGE ID:镜像ID CREATED:镜像创建时间 SIZE:镜像大小docker ...
分类:
其他好文 时间:
2020-06-15 21:20:41
阅读次数:
64