码迷,mamicode.com
首页 >  
搜索关键字:git clone    ( 34685个结果
让jQuery的ajaxFileUpload插件支持onchange事件
ajaxFileUpload插件只能上传一次的BUG发现还不少人遇到,很不幸我也遇到的,使用后发现里面的坑还不少,在createUploadForm方法中有句var newElement = jQuery(oldElement).clone(); // 修改成clone(true),同时复制事件另外...
分类:Web程序   时间:2014-07-16 21:56:15    阅读次数:151
Vesions ignore & ld: library not found for -l...
1.递归删除指定目录下的 .git、.svn 文件find . -name .git | xargs rm -frfind . -name .svn | xargs rm -rf第一条倒还不常用,因为用 git 做版本管理的时候,只在根目录下生成一个 .git 目录,删掉这一个就行了~因此,删除 ....
分类:其他好文   时间:2014-07-16 19:55:02    阅读次数:182
Generating SSH Keys on windows
two ways here I provide:+ use openSSH command line on git bash(such as msysgit bash) + ls -al ~/.ssh + ssh-keygen -t rsa -C "phpgcs@qq.com" + e...
分类:Windows程序   时间:2014-07-16 19:54:04    阅读次数:255
版本回滚
#查看log,获取版本号 git log#本地仓库回退到某个版本 git reset --hard baeertasdasdvf#新建需要回退的版本old_master分支做备份 git branch old_master #push到远程 git push origin old_mas...
分类:其他好文   时间:2014-07-16 19:46:01    阅读次数:203
delete master error(git push origin :master)
All good so far. We next want to delete the branch on github. However, if we do this the naive way:git push origin :masterwe just get an error like th...
分类:其他好文   时间:2014-07-16 19:33:09    阅读次数:231
发布一个开源极致的javascript模板引擎tpl.js
#tpl.js(大家直接去https://git.oschina.net/tianqiq/tpl.js这个上面看)##简介 tpl.js是一个比较极致(极小,极快,极简单)的js模板引擎,可以在各种js环境中使用。##特性 1. 使用js作为模板语言,几乎无学习成本 2. 小巧,速...
分类:编程语言   时间:2014-07-13 12:22:41    阅读次数:244
iOS Mobile Development: Using Xcode Targets to Reuse the Code 使用xcode targets来实现代码复用
In the context of iOS mobile app development, a clone is simply an app that is based off another mobile app. A clone usually has more or less the same...
分类:移动开发   时间:2014-07-12 13:23:03    阅读次数:1667
eclipse config 2 tab -> space
编码规范要求不允许使用tab,但是又要有4个字符的缩进,连点4次space,这不是程序员的风格 来看看 eclipse 设置一次tab像space的转换 如下操作 Window->Preferences   基于K&R clone一个新的代码风格 更改缩进风格   缩进大小为4,即4个字符,OK完成了...
分类:系统相关   时间:2014-07-10 20:38:42    阅读次数:303
CentOS 7发布
CentOS项目正式发布CentOS7.0-1406。相当于是CentOS7的正式版。所有的源码rpms采用相同的密钥进行签名,包括二进制文件。所有CentOS-7的源代码均收录在git.centos.org。源代码RPM亦会在vault内发行:OS:http://vault.centos.org/centos/7.0.1406/os/Source/SPackages/ Updates..
分类:其他好文   时间:2014-07-10 19:05:56    阅读次数:490
libmodbus遇到的问题
我在github网站git clone下载的libmodbus,编译的过程中遇到了很多问题,问题也是接踵而至,陷入无限的循环中。请教郭工,于是我就到http://libmodbus.org/download/下载最新版本的,果然编译的很顺畅,一点问题也没有。在参考github网站的libmodbus的内容就可以了。...
分类:数据库   时间:2014-07-10 17:48:51    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!