码迷,mamicode.com
首页 >  
搜索关键字:repository    ( 4028个结果
SVN
常用操作 svn --version【查看版本】 checkout【检出】 # your_target_repository_url 用你实际的仓库地址代替,xxx用你实际的用户名代替 svn checkout your_target_repository_url --username=xxx 注: ...
分类:其他好文   时间:2021-02-03 11:09:09    阅读次数:0
maven依赖 临时转阿里云镜像
<repositories> <repository> <id>alimaven</id> <name>Maven Aliyun Mirror</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> ...
分类:其他好文   时间:2021-02-02 11:34:23    阅读次数:0
Git 常用命令速查
下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。 Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 #删除本地tag git tag -d [tag] ...
分类:其他好文   时间:2021-02-02 10:31:32    阅读次数:0
git clone报错处理
git clone过大的仓库时会报以下错误 remote: aborting due to possible repository corruption on the remote side. fatal: protocol error: bad pack header 解决办法是分层clone $ ...
分类:其他好文   时间:2021-01-26 12:41:49    阅读次数:0
SLF4J: Class path contains multiple SLF4J bindings.
maven 下载了一个新扩展 导致如下错误: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/C:/Users/QianXiao/.m2/repository/ch/qos/ ...
分类:其他好文   时间:2021-01-26 11:57:22    阅读次数:0
springBoot 基础-拓展(二) 记录一些常用的配置文件
1:pom中设置下载源为阿里云 <repositories> <repository> <id>aliyun</id> <name>aliyun</name> <url>https://maven.aliyun.com/repository/public</url> </repository> </ ...
分类:编程语言   时间:2021-01-22 12:00:04    阅读次数:0
SpringBoot中引入Activiti并完成基本业务流程
Activiti DB中各个表的作用 Activiti的后台是有数据库的支持,所有的表都以ACT_开头。 第二部分是表示表的用途的两个字母标识。 用途也和服务的API对应。 ACT_RE_*: 'RE'表示repository。 这个前缀的表包含了流程定义和流程静态资源 (图片,规则,等等)。 AC ...
分类:编程语言   时间:2021-01-15 12:12:43    阅读次数:0
nexus管理npm包,npm包发布在私有仓库(nexus)中
一、登陆nexus地址:http://10.137.8.212:8081/#admin/repository/blobstores 二、创建知识库,有3种类型 三、创建仓库(1)创建npm(hosted)私有仓库① ②hosted改成allow redeploy,这样才能运行重复上传一个包,不然会报 ...
分类:其他好文   时间:2021-01-15 12:09:20    阅读次数:0
ubuntu 18.04安装腾讯通RTX2015
一、手动安装 1、安装wine $ sudo add-apt-repository ppa:wine/wine-builds $ sudo apt-get update $ sudo apt-get install winehq-devel 或下载稳定版本 $ sudo apt-get instal ...
分类:系统相关   时间:2021-01-12 11:23:52    阅读次数:0
Docker常用操作
一、镜像操作 1)构建镜像 docker build -t REPOSITORY:TAG . 注意最后一个点[.]不能缺少,生成完:runoob/centos为REPOSITORY,6.7为TAG 2)获取镜像 sudo docker pull REPOSITORY[:TAG] 3)为镜像打个标签  ...
分类:其他好文   时间:2021-01-11 11:04:35    阅读次数:0
4028条   上一页 1 ... 3 4 5 6 7 ... 403 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!