2017年7月28日

Centos 7 下安装jdk 7

摘要: 1、下载 下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html wget http://download.oracle.com/otn-pub/java/jdk/8u144-b 阅读全文

posted @ 2017-07-28 20:42 Xiaox-xin 阅读(168) 评论(0) 推荐(0)

Centos 7 安装redis

摘要: 1.下载 wget http://download.redis.io/releases/redis-3.2.3.tar.gz 2.解压 tar -zxvf redis-3.2.3.tar.gz 3.安装 make && make install 注意:make && make install 之前一 阅读全文

posted @ 2017-07-28 20:07 Xiaox-xin 阅读(103) 评论(0) 推荐(0)

git 学习笔记

摘要: GIT vcs:版本控制系统cvcs:集中化的版本控制系统dvcs:分布式版本控制系统 git只关心文件数据的整体是否发生变化,而大多数其他系统则只关系文件内容的具体差异 三种状态: 在git内都只有三种状态:已提交(commmitted),已修改(modified),已暂停(staged). gi 阅读全文

posted @ 2017-07-28 18:40 Xiaox-xin 阅读(134) 评论(0) 推荐(0)

mongodb 在windows下的启动方式

摘要: 普通启动mongod --config D:\MongoDB\etc\mongodb.conf 使用SC安装为Windows服务sc create MongoDB binPath= "d:\mongoDB\bin\mongod.exe --service --config=D:\mongoDB\et 阅读全文

posted @ 2017-07-28 16:40 Xiaox-xin 阅读(99) 评论(0) 推荐(0)

git 基础操作

摘要: 初始化一个git仓库 git init git fetch origin master > 从远程的origin仓库的master分支下载代码到本地的origin master 查看local分支 git branch 查看远程和本地的分支 git branch -a ## 建立对远程仓库的镜像:# 阅读全文

posted @ 2017-07-28 14:32 Xiaox-xin 阅读(126) 评论(0) 推荐(0)

git 获取远程分支的代码

摘要: Git clone只能clone远程库的master分支,无法clone所有分支,解决办法如下: 1. 找一个干净目录,假设是git_work2. cd git_work3. git clone http://myrepo.xxx.com/project/.git ,这样在git_work目录下得到 阅读全文

posted @ 2017-07-28 14:28 Xiaox-xin 阅读(597) 评论(0) 推荐(0)

导航