在执行git pull origin master时出现: fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure yo ...
分类:
移动开发 时间:
2020-03-23 17:19:27
阅读次数:
107
开发工具·Eclipse 常见开发工具介绍 * A:操作系统自带的记事本软件 * B:高级记事本软件 * C:集成开发环境 IDE * (Integrated Development Environment) * D:Eclipse和MyEclipse的区别 * a:Eclipse是一种可扩展的开放 ...
分类:
编程语言 时间:
2020-03-23 15:14:42
阅读次数:
84
# step 0: clear# sudo apt-get remove docker docker-engine docker-ce docker.io# step 1: 安装必要的一些系统工具sudo apt-get update#sudo apt-get -y install apt-tran ...
分类:
其他好文 时间:
2020-03-22 10:50:18
阅读次数:
73
在CentOS官网上安装Minimal版本,这个版本只有900多MB,只有纯命令行界面,适合用于部署服务器; ...
分类:
系统相关 时间:
2020-03-15 22:27:08
阅读次数:
97
1、首先需要安装Git,可以使用yum源在线安装: [root@localhost Desktop]# yum install -y git 2、创建一个git用户,用来运行git服务 # adduser git 3、初始化git仓库:这里我们选择/data/git/learngit.git来作为我 ...
分类:
其他好文 时间:
2020-03-11 18:10:46
阅读次数:
50
一个整型数组里除了两个数字之外,其他的数字都出现了两次。请写程序找出这两个只出现一次的数字。 首先第一个思路就是双层循环。但是时间复杂度太高了O(n^2) 所以就不写了 还有一个就是:利用哈希map,键存放数字,值存放出现的次数 #include <iostream> #include <vecto ...
分类:
编程语言 时间:
2020-03-10 13:37:33
阅读次数:
45
随着业务负载的不断加重,容器化、虚拟化也成为各类在线应用必须要具备的能力。对于分布式数据库,容器化也是提升快速部署、提高运维效率的一个很好的路径。 我们重新优化了 Docker部署的方式,帮助大家更快的上手SequoiaDB集群,本文就将介绍基于 Docker 的SequoiaDB分布式集群快速部署 ...
分类:
数据库 时间:
2020-03-06 12:48:59
阅读次数:
82
Some scientists took pictures of thousands of birds in a forest. Assume that all the birds appear in the same picture belong to the same tree. You are ...
分类:
其他好文 时间:
2020-03-04 15:07:02
阅读次数:
86
Array LeetCode Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and i.... ...
分类:
其他好文 时间:
2020-03-01 14:18:51
阅读次数:
71
What makes objects different is that we can create more of them. Every time we use the {} object literal, we create a brand new object value: let shre ...
分类:
编程语言 时间:
2020-02-25 19:49:14
阅读次数:
82