码迷,mamicode.com
首页 >  
搜索关键字:代理 git    ( 53694个结果
【原创】Linux虚拟化KVM-Qemu分析(九)之virtio设备
背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: KVM版本:5.9.1 QEMU版本:5.0.0 工具:Source Insight 3.5, Visio 文章同步在 ...
分类:系统相关   时间:2021-02-16 12:27:04    阅读次数:0
Docker 下Elasticsearch 的安装 和ik分词器
(1)docker镜像下载 docker pull elasticsearch:5.6.8 (2)安装es容器 docker run -di --name=changgou_elasticsearch -p 9200:9200 -p 9300:9300 elasticsearch:5.6.8 920 ...
分类:其他好文   时间:2021-02-16 12:12:42    阅读次数:0
netstat命令
netstat命令 netstat命令显示各种网络相关信息,例如网络连接、路由表、接口统计信息、伪装连接、多播成员身份等。 语法 netstat [address_family_options] [--tcp|-t] [--udp|-u] [--raw|-w] [--listening|-l] [- ...
分类:Web程序   时间:2021-02-15 12:35:29    阅读次数:0
centos升级git到2.x
centos6 yum install git yum install http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm yum update git centos7 yum ...
分类:其他好文   时间:2021-02-15 12:32:55    阅读次数:0
git工具 -- repo
资料1: https://wladimir-tm4pda.github.io/source/git-repo.html sync命令: repo sync [project-list ] Downloads new changes and updates the working files in y ...
分类:其他好文   时间:2021-02-15 12:26:44    阅读次数:0
git checkout -b develop origin/develop
git checkout -b develop origin/develop: 以远程的origin/develop分支为蓝本,在本地新建一个分支develop,并切换到新建的分支develop,并且建立develop与远程分支origin/develop的跟踪关系(use git pull)。查看 ...
分类:其他好文   时间:2021-02-15 12:23:59    阅读次数:0
git commit --amend修改上次的commit内容 或者 将新的改动作为上一次commit
Git commit --amend 修改文件1.txt, 然后add, commit; 然后: case1: git commit --amend,可以修改上次commit信息(一般修改message说明信息); case2: 继续修改1.txt, 也可以增加新的文件等,然后,git add一下, ...
分类:其他好文   时间:2021-02-15 12:22:35    阅读次数:0
dremio 源码编译
dremio 是基于java 开发的,项目使用了maven进行包管理,以下是一个简单的源码构建 依赖 java8, maven (至少3.3.9) 构建 构建比较慢,需要等待 构建 git clone https://github.com/dremio/dremio-oss.git dremio c ...
分类:其他好文   时间:2021-02-15 12:12:31    阅读次数:0
github上项目直接在浏览器页面像VS Code一样查看代码
项目地址 https://github.com/conwnet/github1s 使用方式 把浏览器里地址栏里github项目地址github后面加1s改为github1s即可。 以Sentinel项目为例: https://github.com/alibaba/Sentinel 改为 https: ...
分类:其他好文   时间:2021-02-15 12:11:40    阅读次数:0
Git 操作
1.重命名 git branch -m oldBranchName newBranchName 2.删除远程分支:git push origin :oldBranchName 3.将重命名过的分支提交:git push origin newBranchName 4.新建分支 : git branch ...
分类:其他好文   时间:2021-02-15 12:07:38    阅读次数:0
53694条   上一页 1 ... 59 60 61 62 63 ... 5370 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!