码迷,mamicode.com
首页 >  
搜索关键字:clone    ( 5187个结果
添加gitolite用户和仓库
1、在linux工作机上生成密钥对ssh-keygen -t rsa输入用户名但不输入passphrase,这样连接时就不用每次都输入passphrase了。2、添加用户和仓库在管理员的工作机上导出gitolite-admingit clone git@host:gitolite-admin在key...
分类:其他好文   时间:2014-07-24 21:19:53    阅读次数:237
Linux 下 安装 Phalcon
先安装GIT 然后从 git://github.com/phalcon/cphalcon.git 这里下载安装文件 编译完成就可以安装了!编译chmod -R 777 cphalcon1. 创建从C源扩展遵循这些步骤:自动检测你的架构git clone --depth=1 git://github....
分类:系统相关   时间:2014-07-24 10:16:33    阅读次数:273
CAN bus的移植
CAN bus的移植 一、首先要阅读相关的文档了解can bus协议; 二、驱动移植,内核中一般是自带相关的can驱动,如果没有可以自行加入; 三、测试,首先下载can bus套件:$git clone https://git.gitorious.org/linux-can/can-utils.gitfulinux ~$cd can-utilsfulinux ~$ls**** candump.c...
分类:其他好文   时间:2014-07-23 13:09:16    阅读次数:352
LeetCode Clone Graph
class Solution {public: UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) { UndirectedGraphNode *clone = dfs(node); dfs_clea...
分类:其他好文   时间:2014-07-22 23:05:52    阅读次数:197
分析USB平台设备模型框架(1)
start_kernel rest_init(); kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND); do_basic_setup(); driver_init(); void __init driver_init(void) void __init driver_init(vo...
分类:其他好文   时间:2014-07-20 00:10:38    阅读次数:318
git 基本操作
windows安装:安装好后,随便点击一个文件夹,就会有git bash的右键选项。。。。 这个是cmd方式还有git gui方式。。。git clone 从某个分支上copy一份到本地。git init 初始化—— 主要是生成.gitignore文件等,表明此目录是git专用git add . ....
分类:其他好文   时间:2014-07-19 23:10:48    阅读次数:303
Ubuntu下载编译Linux内核。
1、安装git工具2、到官网下载linux内核https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git,这个地址不是很好用在用下面这个 git clone git://git.kernel.org/pub/scm/linux/ke...
分类:系统相关   时间:2014-07-19 16:18:22    阅读次数:328
【leetcode】Clone Graph
Clone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors.OJ's undirected graph serialization:Nodes are labeled uniq...
分类:其他好文   时间:2014-07-19 12:11:53    阅读次数:238
几种常见高级数据保护技术
一、远程文件复制将本地主机上的文件实时同步到远程主机上,保证文件或目录内容一致,如Linux常用的rsync就是这类工具,它可监视文件系统的动作,将变化同步到远程主机,只复制变化的内容,对于大文件非常有用,可节省带宽资源,提高效率。二、远程磁盘(卷)镜像存储级的数据..
分类:其他好文   时间:2014-07-19 02:41:26    阅读次数:213
[LeetCode] Clone Graph
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 u...
分类:其他好文   时间:2014-07-19 00:05:00    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!