本教程将讲述:gitk的Git Gui的部分常用功能和使用方法,包括:建库、克隆(clone)、上传(push)、下载(pull - fetch)、合并(pull - merge)。——————————————————————————————————————————————1、下载并安装 下载地址:...
git status 查看当前分支状态
git add 需要提交的文件
git rm 需要删除的文件
git commit -m "注释说明"
git branch 查看当前是属于哪个分支,假如是puppis 分支
git pull --rebase 更新到与服务器同步
git push origin puppis 提交到p...
分类:
其他好文 时间:
2014-11-13 14:49:45
阅读次数:
179
1.执行 git pull 的时候,出现 如下 错误: If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process is runnin...
分类:
其他好文 时间:
2014-11-12 12:05:18
阅读次数:
164
PULL的工作原理:XML pull提供了开始元素和结束元素。当某个元素开始时,可以调用parser.nextText从XML文档中提取所有字符数据。当解析到一个文档结束时,自动生成EndDocument事件。常用的XML pull的接口和类:XmlPullParser:该解析器是一个在org.xm...
分类:
移动开发 时间:
2014-11-11 18:59:02
阅读次数:
243
tomcat server是眼下比較流行的开源中间件server,以下介绍怎样使用 docker 来做一个 tomcat 数据库服务。官方的仓里没有标 OFFICIAL 的 tomcat 的镜像,只是 「tutum」的镜像做的很好,我们能够直接 pull 他们的镜像来完毕我们的操作。core@loc...
分类:
其他好文 时间:
2014-11-07 20:36:30
阅读次数:
292
常用的adb命令应该是用的比较熟悉了,如
Adb shell
Adb remount
Adb devices
Adb install
Adb uninstall
Adb pull
Adb push
这些都是本地adb,那怎样通过网络接口连接另外一台设备呢?那这里就稍微总结一下网络adb方面的东西。
Adb connect IP:Port
这个命令中IP表示目标设备的ip地址,...
分类:
移动开发 时间:
2014-11-07 14:54:29
阅读次数:
290
1、Pull解析简介
Pull解析是Android系统内置的一种对XML的解析方式,它与SAX解析方式基本一致,都包括开始元素和结束元素事件,使用parser.next()可以进入下一个元素并触发相应事件。但是它们不同的是,SAX的事件驱动是回调相应方法,需要提供回调的方法,而在SAX内部自动调用相应的方法。而Pull解析器并没有强制要求提供触发的方法。因为它触发的事件并不是一个...
分类:
移动开发 时间:
2014-11-07 14:50:17
阅读次数:
202
为apt-get,git pull,wget等终端程序设置代理服务器
分类:
系统相关 时间:
2014-11-06 19:08:24
阅读次数:
202
Here is the script that ultimately worked. I think the bit I was originally missing that prevented it from working remotely was the unset GIT_DIR#!/bi...
分类:
其他好文 时间:
2014-11-05 21:21:16
阅读次数:
196
获取设备IMEI:adb shell dumpsys iphonesubinfo文件在设备和PC端的操作:adb push [PC端源文件路径] [设备的目的文件路径] 例如:adb push C:\Users\pesson\Desktop\code /mnt/sdcard/wjj/adb pull...
分类:
数据库 时间:
2014-11-05 14:24:40
阅读次数:
219