摘要: git在团队项目中的使用流程 1.首先从一个git远程仓库中clone项目到本地 ? 1 git clone 仓库地址 ? 1 git clone 仓库地址 ? 1 git clone 仓库地址 ? 1 git clone 仓库地址 git clone 仓库地址 2.创建开发分支 一般我们写代码不会 阅读全文
posted @ 2016-08-23 18:21 专注it 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 前言 这里就不介绍 git 了,表一看到命令行就怕怕,常用的命令也就这些,基本满足 99% 以上的项目需求,非常实用。 正文 一、常用 git 命令 1.1 git clone <url> [<directory>] 从远程库 clone 代码到本地,directory 用于指定一个新目录名 1.2 阅读全文
posted @ 2016-08-23 18:15 专注it 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 下图是大概步骤: 下面是详细步骤,但我的代码跟上面有点不一样,但都是一个道理: 第一个程序测试 wordcount 先创建目录 hadoop fs -mkdir /wc hadoop fs -mkdir /wc/input 把要统计的文件放入目录 hadoop fs -put /opt/module 阅读全文
posted @ 2016-08-23 17:46 专注it 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1、MySQL常用命令create database name; 创建数据库use databasename; 选择数据库drop database name 直接删除数据库,不提醒show tables; 显示表describe tablename; 表的详细描述 或者是 show columns 阅读全文
posted @ 2016-08-23 11:40 专注it 阅读(414) 评论(0) 推荐(0) 编辑
摘要: Student(S#,Sname,Sage,Ssex) 学生表 S#:学号;Sname:学生姓名;Sage:学生年龄;Ssex:学生性别Course(C#,Cname,T#) 课程表 C#:课程编号;Cname:课程名字;T#:教师编号SC(S#,C#,score) 成绩表 S#:学号;C#,课程编 阅读全文
posted @ 2016-08-23 11:27 专注it 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 环境描述Redis Master:192.168.1.100 6379(Ubuntu系统)Redis Slave1:192.168.1.101 6380(Ubuntu系统)Redis Slave2:192.168.1.102 6381(Ubuntu系统) 安装redis分别在192.168.1.10 阅读全文
posted @ 2016-08-23 10:59 专注it 阅读(351) 评论(0) 推荐(0) 编辑