码迷,mamicode.com
首页 >  
搜索关键字:pull    ( 3869个结果
CSS透明度
.transparent_class { filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;}UPDATE: I wanted to pull this post out...
分类:Web程序   时间:2014-10-24 15:59:58    阅读次数:212
查看android手机应用程序中的数据库db
前提:一部root过了的手机。使用android-sdk-windows\platform-tools\adb.exe在cmd下面执行:adb rootadb pull /data/data/com.xxx.game/databases/xxxx.db D:\将DB拉到D盘根目录使用SQLite E...
分类:移动开发   时间:2014-10-23 20:38:46    阅读次数:254
王立平--Failed to pull selection
解决办法:重启eclipse...
分类:其他好文   时间:2014-10-23 17:49:12    阅读次数:159
Android开发之XML解析PULL
Android中解析xml是非常常用的操作,除了SAX和DOM两种最常用的解析xml外,Android内置的Pull解析器解析XML文件。 在Android的源码中大量的使用Pull解析,pull不仅更加的面相对象,而且使用速度和效率更高。 Pull解析器是一个开源的java项目,既可以用于android,也可以用于JavaEE。如果用在javaEE需要把其jar文件放入类路径中,因为A...
分类:移动开发   时间:2014-10-23 16:27:14    阅读次数:243
IDEA从Git更新代码不成功的问题
Error pulling origin: error: Your local changes to the following files would be overwritten by merge 在Android Studio使用git进行pull操作中,你会发现会有这么一个错误,这个其实类似于svn中的冲突。那如...
分类:其他好文   时间:2014-10-22 18:37:00    阅读次数:1915
git pull 部署问题一揽子问题解决
之前遇到问题在服务器拉取一直不成功,php 的shell函数 调用 git pull 一直不成功 ,但是单独 用root 权限 在机器上面 执行 git pull 是可以的 说明语法没问题。而 php 调用的shell的权限 其实是用户 www 说明 www的权限不成功表示用户www 没权限 所以需...
分类:其他好文   时间:2014-10-22 12:27:07    阅读次数:365
王立平--查看SQLite中的数据信息
Eclipse菜单Window - Open Perspective - DDMS进入DDMS视图。 然后File Explorer View中依次展开路径/data/data/package_name/databases/, 将其中的db文件pull from device保存到电脑上, 再使用navicat、SQLiteSpy或其他软件打开查看...
分类:数据库   时间:2014-10-22 11:03:22    阅读次数:229
git error: RPC failed; result=22, HTTP code = 502
git pull 的时候 出现的这个错误,一开始按照网上的解决方法 git config http.postBuffer 524288000 修改传输字节限制, 还是会报错。 后来把配置文件里面的 [Http]代理注释掉, 就OK了。 (不懂这个错误是为什么, 远程的文件确实是挺大的, 但是修改传....
分类:Web程序   时间:2014-10-20 19:21:29    阅读次数:2302
git 添加新分支后可能报错及解决方案
报错信息:You asked me to pull without telling me which branch youwant to merge with, and 'branch.v1.0.0.merge' inyour configuration file does not tell me,...
分类:其他好文   时间:2014-10-20 16:40:29    阅读次数:211
Git用法
1、 git init 2、 git remote add origin https://git.oschina.net/hongweizhiyuan/xxxxxx.git 3、 git add --all 4、 git commit -m "update" 5、 git pull origin master? (如果报错,输入它) 6、 git push...
分类:其他好文   时间:2014-10-20 02:18:07    阅读次数:137
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!