摘要: git的操作流程命令步骤: 1.先执行git clone “远程仓库地址”进行拉取代码到本地; 2.当代码修改编写完后,执行git status 查看目前的状态,改了哪些代码; 3.再执行git diff 查看修改了哪些文件,修改了哪里,以及修改的所有记录; 4.这时确保无误后执行 git add. 阅读全文
posted @ 2022-03-06 23:21 软件测试媛--简励 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.拉取 docker 镜像docker pull gitlab/gitlab-ce:latest 2.运行镜像docker run -d -p 443:443 -p 80:80 -p 222:22 --name gitlab --restart always gitlab/gitlab-ce80端 阅读全文
posted @ 2022-03-06 22:30 软件测试媛--简励 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1、使用Docker搜索svn docker search svn //在docker上搜索svn镜像 2、拉取svn镜像 这里使用的svn镜像为garethflowers/svn-server docker pull garethflowers/svn-server //拉取garethflowe 阅读全文
posted @ 2022-03-06 21:56 软件测试媛--简励 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 1.如果已安装过 Docker, 需要移除老版本的 Docker,命令如下: sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-l 阅读全文
posted @ 2022-03-06 18:21 软件测试媛--简励 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 1.http://www.codebaoku.com/category/python-lang.html 2.http://codexy.cn/ 3.http://rcode.rbtree.cn/ 4.https://how2j.cn/ 5.https://www.liaoxuefeng.com/w 阅读全文
posted @ 2022-03-06 16:43 软件测试媛--简励 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 1.程序员宝盒:https://www.baoboxs.com/#/ 2.程序员一站式导航:http://tooool.org/ 3.zdzn.net:https://www.zdzn.net/ 4.程序员网址导航:https://www.coderutil.com/ 5.前站导航:https:// 阅读全文
posted @ 2022-03-06 16:42 软件测试媛--简励 阅读(2293) 评论(0) 推荐(0) 编辑
摘要: 1.码农书籍网:https://www.manongbook.com/python/2524.html 2.IT码农:https://tanqingbo.cn/ 3.书栈网:https://www.bookstack.cn/explore?cid=80&tab=popular 4.码农之家:http 阅读全文
posted @ 2022-03-06 16:41 软件测试媛--简励 阅读(1582) 评论(0) 推荐(0) 编辑
摘要: 1.yum安装(或yum源-国内源)--推荐使用 说明:通过yum进行软件安装或系统升级的实质就是通过yum命令下载指定的远程互联网主机上的RPM包,然后自动进行安装,同进解决相互间的依赖关系。 安装步骤:1、安装(rpm包) yum -y install [软件包的名称] 注:参数-y是免交互,可 阅读全文
posted @ 2022-03-06 01:19 软件测试媛--简励 阅读(783) 评论(0) 推荐(0) 编辑