git中重要的概念:工作目录(working directory):在工作目录中修改文件,修改后的文件状态是modified,新添加的文件是untracked,通过git add命令将文件保存到staging area中;staging area:保存下次即将提交到git repository中文件...
分类:
其他好文 时间:
2015-04-25 19:42:29
阅读次数:
156
https://github.com/xu123/text学习了很多知识感觉很有趣git config :配置gitgit add:更新working directory中的文件至staging area。git add .更新所有的文件git commit:提交staging area中的文件至g...
分类:
其他好文 时间:
2015-04-25 12:12:22
阅读次数:
149
Source data, target data, data warehouse, data mart, reports, ETL - Extract Transform Load, etl logic - incremental or full , integration services, re...
分类:
其他好文 时间:
2015-04-03 19:22:00
阅读次数:
150
数据仓库(Data Warehouse)
数据集市(Data Mart)
操作型数据存储(ODS, Operational Data Store)
企业数据仓库(EDW, Enterprise Data Warehouse)
集结区(Staging Area)
展现区(Presentation area)...
分类:
其他好文 时间:
2015-03-30 21:17:05
阅读次数:
144
在开发过程中,多环境配置是经常遇到的,比如在Android开发过程中,在不同环境上请求服务器的URL是不同的,使用Gradle进行管理,是非常方便的。
首先查看工程目录结构:
使用AndroidStudio开发的看到这个熟悉吧。main就是目前开发的环境。dev为测试环境。product,staging为其他环境,当然还可以有其他更多环境。1、将请求的URL定义到Constant常量类中...
分类:
Web程序 时间:
2015-03-06 17:07:47
阅读次数:
144
对于当前不在OpenWRT repository中的软件,如果是用源码形式发布的,那么可以用OpenWRT Buildroot进行交叉编译。首先编译好Buildroot(一般编译过一次固件,就已经编译好了)找到目录staging_dir/toolchain-architecture_gcc-comp...
分类:
其他好文 时间:
2015-03-05 00:08:41
阅读次数:
165
描述:fastjson是目前java语言中最快的json库,比自称最快的jackson速度要快,第三方独立测试结果看这
里:https://github.com/eishay/jvm-serializers/wiki/Staging-Results 。
fastjson比gson快大约6倍,测试结果上这里:https://github.com/eishay/jvm-s...
分类:
Web程序 时间:
2015-03-04 13:03:28
阅读次数:
185
1:cd--进入项目目录(cd projiect/)2:ls--查看项目目录3:git branch--查看分支4:git status--查看状态5:git checkout staging--切换分支6:mysql.server start--启动数据库7:git pull origin sta...
分类:
Web程序 时间:
2015-01-20 10:13:17
阅读次数:
210
SDE: Source Dependent Extract
SDE mappings -- extracts the data from the transactional Source System and loads into the data warehouse staging tables.
SDE mappings are designed with respect to the s...
分类:
其他好文 时间:
2015-01-19 15:52:26
阅读次数:
201
Pro Git
跳转至:
导航、
搜索
working - staging - commited.gitignore
*.a 忽略所有*.a !/common/my.a 但是这个.a除外-
rm ... => git rm -f 本地不再保留git rm --cached readme.txt 本地保留,但不再跟踪git rm logs/\*.log 注意这里需...
分类:
其他好文 时间:
2014-12-18 09:17:28
阅读次数:
156