码迷,mamicode.com
首页 >  
搜索关键字:git init    ( 57340个结果
[栈和队列]从中缀向后缀转换表达式
1 #include 2 #include 3 #include 4 #define INIT_STACK_SIZE 100 5 typedef struct 6 { 7 char * chOperator; 8 int dwtop; 9 }OPND;10 11 void I...
分类:其他好文   时间:2014-05-01 20:37:37    阅读次数:373
[栈和队列]括号匹配
1 #include 2 #include 3 #include 4 #define INIT_STACK_SIZE 100 5 typedef struct 6 { 7 char * chOperator; 8 int dwtop; 9 }OPND;10 11 void I...
分类:其他好文   时间:2014-05-01 20:32:11    阅读次数:366
IOS中Block的循环引用
@interface DemoObj()@property (nonatomic, strong) NSOperationQueue *queue;@end@implementation DemoObj- (instancetype)init{ self = [super init]; ...
分类:移动开发   时间:2014-05-01 20:28:37    阅读次数:917
git log 积累
git  log 的用法,具体参考 git log --help,以下是个人在使用中遇见的问题,略作统计。 查看单个文件的修改差异(类似于查看单个文件的log,同时将每次log 的详细记录都显示出来): --full-diff Without this flag, git log -p ... shows commits that touch the specified paths,...
分类:其他好文   时间:2014-05-01 18:33:15    阅读次数:324
git push 失败
gitlab SSH 失败 解决方案,分享给大家 谢谢!...
分类:其他好文   时间:2014-05-01 18:11:29    阅读次数:400
Github实例教程-创建库、创建主页
以README文件为实例,详细介绍github的使用过程 请先下载git,然后配置以下内容: ( 我的系统是debian,其他版本的UNIX/Linux有差别),windows的暂时不清楚。 (一) 1.先下载git   $ apt-get install git-core 2.创建git用户名(Username),首先你要告诉git你的名字,这样它才能正确的给你提交的的东西...
分类:其他好文   时间:2014-05-01 17:26:22    阅读次数:311
Upstart事件驱动的任务和服务引导方法简述
Upstart是一个基于事件的替代在引导过程中处理任务和服务的启动、停止、监督整个系统运行的/sbin/init守护进程的一个程序。 在Unix和Linux系统上的“初始化”或“系统初始化”过程中有进程ID(PID)为“1”。也就是说,它是启动在系统引导时(忽略的initrd/ initramfs)装载的第一道工序。根据官方说法,Upstart是一个替代传统的Unix的“System V”的“init”制度的“INIT”。Upstart提供与传统的“初始化”系统相同的功能,但超越了原有的许多方面。 在系...
分类:其他好文   时间:2014-05-01 17:22:23    阅读次数:292
Cocos2d3.0 CheckBox
.h Text* _displayValueLabel; void selectedEvent(Ref* pSender,CheckBoxEventType type); .cpp  init()函数 _touchGroup = Layer::create(); addChild(_touchGroup); Size winSize = ...
分类:其他好文   时间:2014-05-01 17:18:48    阅读次数:453
git rebase和merge 区别和应用场景
对于两个分支而言,rebase和merge没有区别,但是rebase更干净,因为log hisitory是线性的,但commit不一定按日期先后排,而是local commit总在后面,merge之后history变得比较复杂,但是commit按日期排序,stackoverflow上有个图示很好: http://stackoverflow.com/questions/16666089/whats...
分类:其他好文   时间:2014-04-30 22:27:40    阅读次数:401
php的curl获取https加密协议请求返回json数据进行信息获取
header("Content-type:text/html; charset=utf-8"); function getToken($url){         $ch = curl_init();  curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);   //相当关键,这句话是...
分类:Web程序   时间:2014-04-30 22:16:40    阅读次数:373
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!