GITHUB地址:https://github.com/ErikDubbelboer/phpRedisAdmin在php目录下执行git clone https://github.com/ErikDubbelboer/phpRedisAdmin.gitcd phpRedisAdmingit clon...
分类:
Web程序 时间:
2015-04-16 23:32:50
阅读次数:
568
下载 git clone ***(地址)上传 1. 先注册一个github账号2.在github网站上建设一个工程3. 把想要上传的数据上传到网站去1 git config --global user.name "Your Real Name" 2 git config --global user....
分类:
其他好文 时间:
2015-04-16 19:39:54
阅读次数:
126
题目挺长的,其实只需要关注第一行就OK了。这道题思路挺明显的,对于图来说要么BFS,要么DFS,至于具体细节,我觉得与138题:Copy List with Random Pointer很像。在BFS或DFS过程中,可能要调整顶点的邻接点,这个时候不要忘了它的邻接点可能还没有创建。所以,有以下思路:...
分类:
其他好文 时间:
2015-04-16 01:18:18
阅读次数:
244
初用 git,很多不懂 ,下面都是常用但是却老是忘记的方法? 一 、?git 获取别人新建并且已经push 在远程库中的分支 ①:首先 如果还没clone 代码库 先从 git clone 项目下来。 进入项目中,可以使用 git branch...
分类:
其他好文 时间:
2015-04-15 19:47:17
阅读次数:
114
以前配置树莓派安装ZMAP一直没有装成功,今天又试了下,装成功了,记录下.Good Job.Zmap地址:https://zmap.io/documentation.htmlstep1:git clone git://github.com/zmap/zmap.gitstep2:apt-get ins...
分类:
Web程序 时间:
2015-04-15 00:51:15
阅读次数:
343
第一步当然首先要有个Github账户 https://github.com/
登陆进Github后,进入主页,点击 new repositories
填写项目名称,creat repositories
安装Git客户端,可以选择msysgit,下载msysgit for windows
安装完成,右键启动Git Bash命令行
拷贝刚才创建的repositories,方法:git clone...
分类:
Web程序 时间:
2015-04-14 19:45:21
阅读次数:
241
1、先将这个开源框架下载到本地:Administrator@QH-20141231RFQJ /d/hixin$ cd ViewPagerIndicator/Administrator@QH-20141231RFQJ /d/hixin/ViewPagerIndicator$ git clone htt...
分类:
移动开发 时间:
2015-04-14 16:34:02
阅读次数:
148
Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors.
OJ's undirected graph serialization:
Nodes are labeled uniquely.
We use # as a separator for each...
分类:
其他好文 时间:
2015-04-13 16:41:28
阅读次数:
135
1:git push origin master
2:git push -u origin master
3:git clone git@git地址:项目名字
4:git pull
5:git status
6:git add XXX
7: git commit -a -m "vvvv"...
分类:
移动开发 时间:
2015-04-13 14:37:39
阅读次数:
134
这篇是网易云课堂《Linux内核分析》这门课的作业Linux提供了三个系统调用创建进程,v_fork, fork和clone。fork是将父进程的所有资源都复制给了子进程,所以不带参数。而clone是将指定资源复制给子进程,所以带参数。不论哪种方式最终都要调用do_fork。long do_fork...
分类:
系统相关 时间:
2015-04-13 00:01:56
阅读次数:
559