码迷,mamicode.com
首页 >  
搜索关键字:$origin    ( 4398个结果
奥日与黑暗森林源码赏析
1.使用Conditional代替方法的#if xxx,参考自MoonDebug[Conditional("UNITY_EDITOR"), Conditional("DEVELOPMENT_BUILD")]public static void DrawLine(Vector3 origin, Vec...
分类:其他好文   时间:2015-05-23 08:49:01    阅读次数:129
使用Bash提取修改过的文件
#!/bin/bash a="/Library/WebServer/Documents/dsh-qsy-a" o="/Library/WebServer/Documents/dsh-origin" i="/Library/WebServer/Documents/dsh-qsy-a/temp /Library/WebServer/Documents/dsh-qsy-a/data" d="/Us...
分类:其他好文   时间:2015-05-22 13:37:52    阅读次数:126
同源策略
2015年5月21日22:37:17喜欢看星星···以后肯定要买个天文望远镜(⊙o⊙)…↓First对于客户端Web安全的学习与研究来说,深入理解同源策略是非常重要的,也是后续学习相关知识的基础.^_^同源策略_Same origin policy↓概念是一种约定,它是浏览器最核心也最基本的安全功能...
分类:其他好文   时间:2015-05-22 01:50:39    阅读次数:157
git push --no-thin
有时候我们执行 git push 将一个 new branch 推送到远程仓库的时候,会被远程仓库阻止。可能是我们没有相应的权限吧。然而,我在 git push 的时候加上 --no-thin 参数,就可以将其推送上去了。$ git push --no-thin origin dev 注意,这个命....
分类:其他好文   时间:2015-05-21 12:26:32    阅读次数:6525
git 相关操作
1. 提交新添加的代码: 查看状态: git status 添加 代码到工作区间: git add . 提交 git commit -m "add" 推送到 gitcafe: git push origin master 填写用户名 填写密码 最后再查看一下状态。 2. 本地一些文件(文件夹删除了),同步到gitcafe: git rm 文件夹名称 -r -fgit ...
分类:其他好文   时间:2015-05-20 20:40:57    阅读次数:107
android开发_git操作中常见报错及解决办法
Focus on technology, enjoy life!—— QQ:804212028 浏览链接:http://blog.csdn.net/y18334702058/article/details/44624305 主题:git操作中常见报错 - 如果输入$ git remote add origin git@github.com:xxx(github帐号名)/yyy(项目名).git...
分类:移动开发   时间:2015-05-19 19:11:16    阅读次数:181
git发布到远程仓库
在git.oschina.net上面建立项目 在本地工作文件夹下面初始化 git?init git?remote?add?origin?https://git.oschina.net/bigtimes/project.git git?add?. git?commit?-a?-m?‘first?commit‘ git?push?...
分类:其他好文   时间:2015-05-19 13:22:45    阅读次数:128
error: unpack failed: error Missing tree
最近新建一个仓库,push时遇到如下问题,试了好多方法,最后在stackoverflow上找到解决办法了,可是在开始时就试过这方法,但不成。至于为嘛出现的这种错误,还是不明白原因。 git.exe push --progress "origin" release:refs/for/release%r...
分类:其他好文   时间:2015-05-17 20:14:16    阅读次数:233
fixed window.location.origin useless in IE
Today I got a issue that window.location.origin returns undefined in IE 9 .But we can fix this issue with following code:if (!window.location.origin) ...
分类:Windows程序   时间:2015-05-15 22:49:14    阅读次数:573
git 提交跳过认证
更新命令:GIT_SSL_NO_VERIFY=true git pull origin master提交命令:GIT_SSL_NO_VERIFY=true git push origin master配置用户名和邮箱:git config --global user.name "XXX" git c...
分类:其他好文   时间:2015-05-15 21:06:55    阅读次数:109
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!