-------------报错----------1、git clone error: RPC failed; result=56, HTTP code = 200解决办法:git config --global http.postBuffer 524288000(尽量大)http.postBuff...
分类:
其他好文 时间:
2015-01-10 22:20:28
阅读次数:
280
/*object类,所有的类都继承object类tostring()对象的字符串的描述hashcode()返回对象的哈希码equals()判断两个对象内容是否相等重写equals()方法,必须重写hashcode()方法clone()创建并返回此对象的副本要想一个类的对象能够克隆,必须实现两点1:实...
分类:
其他好文 时间:
2015-01-09 22:11:37
阅读次数:
149
第一种解决方法:
Try reducing the postBuffer size in the remote repository config. Follow the steps below
Go to remote git repository directory
Run the following command to reduce the size of pos...
分类:
其他好文 时间:
2015-01-09 12:44:59
阅读次数:
159
在公司电脑上写的一个AS Module,同步到了Github上,然后回到宿舍Clone到自己电脑的AS工程目录下,打开AS发现没有这个Module,于是准备Import ,结果出现下面的情况:
呃……
于是我猜测Gradle Scripts中有相关属性定义,果不其然:
在settings.gradle中发现了猫腻:
好吧,加上':setwallpaper'应该就可以了:
...
分类:
移动开发 时间:
2015-01-09 09:17:58
阅读次数:
193
1. First you need to login heroku:heroku login2. Then you need to download the code:heroku git:clone -a 3. After you done your changes, cd to project ...
分类:
其他好文 时间:
2015-01-09 07:00:09
阅读次数:
220
https://oj.leetcode.com/problems/clone-graph/http://blog.csdn.net/linhuanmars/article/details/22715747/**
*Definitionforundirectedgraph.
*classUndirectedGraphNode{
*intlabel;
*List<UndirectedGraphNode>neighbors;
*UndirectedGraphNode(intx){label=x;neig..
分类:
其他好文 时间:
2015-01-09 01:53:41
阅读次数:
170
最近因为项目需要接触了kettle,需要为用户定制一些特定的转换。
下面记录一下自己的学习经历。
下载的kettle版本文件稳定版,从github上面下载 github不熟的朋友可以参考文章 如何更好的理解和使用Github
fork一个版本 然后clone in desktop
地址为 https://github.com/bigfishman/...
分类:
其他好文 时间:
2015-01-08 20:12:02
阅读次数:
322
from:://http://blog.csdn.net/huguohu2006/article/details/7045052提交代码到服务器后发现git clone下来的有些目录是空的。查看服务器的目录果然是空的。看本季git add . 后查看git statusmodified: xxx(....
分类:
其他好文 时间:
2015-01-08 15:10:51
阅读次数:
192
详细说下webstorm下设置,首先确认webstorm是否为最新版,然后点击(file->setting->github)填完后点击test,确保畅通。。。点击以后会出现弹出框,会让你确认新项目的名字。搞定以后底部工具栏会出现2个新功能从已有项目中clone可以选择“Checkout from V...
分类:
Web程序 时间:
2015-01-08 00:54:40
阅读次数:
431
在本系列先前的文章中,我们主要讲解了JDBC对本地事务的处理,本篇文章将讲到一个分布式事务的例子。请通过以下方式下载github源代码:git clone https://github.com/davenkin/jta-atomikos-hibernate-activemq.git本地事务和分布式事...
分类:
编程语言 时间:
2015-01-08 00:48:29
阅读次数:
339