上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 30 下一页
摘要: GIT-常用命令 0. 撤销commit 提交commit 后,还没有push时,想要撤销刚刚的 commit 。 git reset --soft HEAD^ 注意,仅仅是撤回commit操作,您写的代码仍然保留。 1. 合并分支 把远端分支dev1 合并到 当前分支。 $ git merge - 阅读全文
posted @ 2020-01-07 13:41 无心々菜 阅读(181) 评论(0) 推荐(0)
摘要: Linux - 常用命令 查看操作系统 cat /etc/*release* 查看端口 netstat -aon | grep 22122 查看磁盘存储 查看磁盘与依赖关系 lsblk 查看磁盘空间 df -h 查看指定目录的磁盘空间,如root目录 df -h /root 创建文件夹 mkdir 阅读全文
posted @ 2019-12-06 14:01 无心々菜 阅读(157) 评论(0) 推荐(0)
摘要: Jenkins-在windows上配置自动化部署(Jenkins+Gitlab+IIS) web部署样例 windows服务部署样例 系统备份 在服务器上创建后缀名为.ps1的文件,例:BackUpDir_MKCurtain.ps1 内容参考: 阅读全文
posted @ 2019-11-22 08:34 无心々菜 阅读(1478) 评论(0) 推荐(0)
摘要: Beyond Compare 文件对比工具的使用 Beyond Compare 工具下载地址: http://www.onlinedown.net/soft/633850.htm 本文下载地址:E:\toos2\Beyond Compare\Beyond_Compare.exe 下载后安装。 破解: 阅读全文
posted @ 2019-11-13 21:07 无心々菜 阅读(1279) 评论(0) 推荐(0)
摘要: SourceTree - 对Git的使用 一 、SourceTree简介 SourceTree 是 Windows 和Mac OS X 下免费的 Git 和 Hg 客户端,拥有可视化界面,容易上手操作。同时它也是Mercurial和Subversion版本控制系统工具。支持创建、提交、clone、p 阅读全文
posted @ 2019-11-13 20:20 无心々菜 阅读(2746) 评论(0) 推荐(0)
摘要: Linux - 安装 dotnet core 环境 系统环境:CentOS7 官方安装指导 https://www.microsoft.com/net/learn/get-started/linux/centos rpm --import https://packages.microsoft.com 阅读全文
posted @ 2019-11-11 11:11 无心々菜 阅读(1290) 评论(0) 推荐(0)
摘要: GIT-Linux(CentOS7)系统安装Git 未成功 查看是否已安装了Git 发现Git版本已存在,说明已安装了Git 查看jenkins本机的git版本 卸载本机低版本的git,自行安装更高版本的git 接着进行git版本升级操作:下载并安装高版本的git,下载地址:https://mirr 阅读全文
posted @ 2019-11-07 20:32 无心々菜 阅读(309) 评论(0) 推荐(0)
摘要: Jenkins-在Centos上配置自动化部署(Jenkins+Gitlab+Rancher) 环境:centos7 首先在服务器上安装好Jenkins和Gitlab和Rancher Gitlab安装:https://www.cnblogs.com/1285026182YUAN/p/10726539 阅读全文
posted @ 2019-11-07 19:24 无心々菜 阅读(1389) 评论(0) 推荐(0)
摘要: Docker安装Nginx 一、拉取官方的镜像 docker pull nginx [root@localhost ~]# docker pull nginx Using default tag: latest latest: Pulling from library/nginx 8d691f585 阅读全文
posted @ 2019-11-06 21:32 无心々菜 阅读(790) 评论(0) 推荐(0)
摘要: Docker部署NETCORE应用程序 创建.netcore项目,本文以ASP.NET Core2.2 版本为例 设置Dockerfile属性始终复制 编辑Dockerfile内容 FROM microsoft/dotnet:2.2-aspnetcore-runtime MAINTAINER lih 阅读全文
posted @ 2019-11-05 20:33 无心々菜 阅读(491) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 30 下一页