码迷,mamicode.com
首页 >  
搜索关键字:$origin    ( 4398个结果
git本地仓库和远程仓库关联
1、创建远程仓库 2、初始化本地仓库git init git add . git commit -m "desc" 3、关联远程仓库 git remote add origin https://gitee.com/lp369/mypython.git 4、第一次先拉取远程库中的README.md和. ...
分类:其他好文   时间:2019-03-21 10:27:16    阅读次数:312
BGP-20190320-next-hop-self
BGP协议中、next-hop-self 的根本原因
分类:其他好文   时间:2019-03-20 23:31:02    阅读次数:260
git 删除本地分支和远程分支
(1)使用命令git branch -a 查看所有分支 其中,remote/origin/master表示的是远程分支 (2)删除远程分支 使用命令 git push origin --delete jvmImprove 可以删除远程分支jvmImprove (3)删除本地分支 使用命令,git b ...
分类:其他好文   时间:2019-03-19 15:10:00    阅读次数:133
LeetCode 973. K Closest Points to Origin
原题链接在这里:https://leetcode.com/problems/k-closest-points-to-origin/ 题目: We have a list of points on the plane. Find the K closest points to the origin ( ...
分类:其他好文   时间:2019-03-19 01:08:47    阅读次数:170
StackStorm利用CORS null origin获得RCE (CVE-2019-9580)
CORS是一种允许当前域(domain)的资源(比如html/js/web service)被其他域(domain)的脚本请求访问的机制,通常由于同域安全策略(the same-origin security policy)浏览器会禁止这种跨域请求。 ...
分类:其他好文   时间:2019-03-17 17:04:55    阅读次数:253
git 提示错误:(non-fast-forward)
1 git pull 2 git pull origin simpleDemo --allow-unrelated-histories 3 git pull origin simpleDemo 4 ,提示提交,执行下面,再执行第3 git commit -m "update" 5 改动一下,接下里就 ...
分类:其他好文   时间:2019-03-16 23:43:29    阅读次数:288
css3的2D变形
一、2D变形 1、变形 transform:translate();translateX();translateY();translate(,); 2、过渡 transition:all 1s; 二、具体体现的例子 1、位移的实例 2、缩放 3、旋转 4、倾斜 ...
分类:Web程序   时间:2019-03-16 09:45:32    阅读次数:217
Nginx跨域设置
参考:https://www.cnblogs.com/bninp/p/5694277.html 当出现403跨域错误的时候 No 'Access-Control-Allow-Origin' header is present on the requested resource,需要给Nginx服务器 ...
分类:其他好文   时间:2019-03-16 09:41:09    阅读次数:151
移动端判断键盘弹出和收起
根据键盘的展开和收起我们可以判断页面的可视区域的高度来操作,具体代码是这样的 ...
分类:移动开发   时间:2019-03-15 19:20:20    阅读次数:266
postMessage的使用
一、简介 1、postMessage()方法允许来自不同源的脚本采用异步方式进行有限的通信,可以实现跨文本档、多窗口、跨域消息传递 2、postMessage(data,origin)方法接受两个参数: (1)data:要传递的数据,html5规范中提到该参数可以是JavaScript的任意基本类型 ...
分类:其他好文   时间:2019-03-15 01:02:01    阅读次数:232
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!