今天对清掉了Jenkins中项目的工作空间,结果构建出现“ERROR: Error fetching remote repo 'origin'”问题;网上各种找也没找到解决这个问题的方法。后来看错误之前是“> git.exe config --local --remove-section crede...
分类:
其他好文 时间:
2015-04-10 16:53:44
阅读次数:
23661
当你从远程仓库克隆时,实际上Git自动把本地的master分支和远程的master分支对应起来了,并且,远程仓库的默认名称是origin。要查看远程库的信息,用git remote:$ git remoteorigin或者,用git remote -v显示更详细的信息:$ git remote -v...
分类:
其他好文 时间:
2015-04-10 15:13:10
阅读次数:
188
以前在项目组用git做版本控制是一直没搞明白git pull与git fetch的区别,昨天在网上查了以后大致知道了怎么回事:用 git fetch 更新项目的的方法如下git fetch origin master:tmp //从远程版本库里拉取最新的matsr分支git diff tmp //查...
分类:
其他好文 时间:
2015-04-09 08:44:44
阅读次数:
116
当使用git进行操作:git checkout -b local-name origin/remote-name出现错误:fatal: git checkout: updating paths is incompatible with switching branches.Did you inten...
分类:
其他好文 时间:
2015-04-07 15:18:33
阅读次数:
147
0000 0000 0000 0011写于2015.04.05 19:231.frame bounce
这两天被UIScroll View 搞的晕头转向,主要还是几个问题没有完全搞懂,总在以为搞定它们时候,又被一个demo否定。目前可能对frame 和 bounce还算理解吧。因此特地写下来记录下。
首先它们的存储都是(x,y,width,height),要分为两个部分看(x,y)和(width...
分类:
其他好文 时间:
2015-04-06 08:57:44
阅读次数:
151
package main/* Create by sndnvaps * date : 2015-04-05 * upload datapoint to yeelink.net * origin post by sndnvaps * hold on https://github.com/sndnv.....
分类:
Web程序 时间:
2015-04-05 13:21:12
阅读次数:
175
报错信息:arrow.html:44 Uncaught SecurityError: Blocked a frame with origin "null" from accessing a frame with origin "null". Protocols, domains, and ports...
分类:
其他好文 时间:
2015-04-03 18:45:50
阅读次数:
144
实现场景:微信朋友圈TableView(BigTableView)的每一行cell都包含一个SmallTableView(显示所有点赞及评论)实现思路: //BigTableView的contentOffset.y - (BigTableView的rect.origin.y + SmallTabl....
分类:
微信 时间:
2015-04-03 01:25:42
阅读次数:
295
演示Demo5种效果的主要css如下:/* transform:向元素应用2D或3D转换; transform-origin属性只有在定义了transform以后才生效 */.tooltip-effect-1 .tooltip-content{ -webkit-transform:transl...
分类:
Web程序 时间:
2015-04-02 22:10:18
阅读次数:
161
问题:打开本地html文件时,报错如下
Cross origin requests are only supported for protocol schemes: http, data,chrome-extension, https, chrome-extension-resource.
分析:浏览器为了安全性考虑,默认对跨域访问禁止。
...
分类:
Web程序 时间:
2015-04-02 20:54:14
阅读次数:
635