码迷,mamicode.com
首页 >  
搜索关键字:push notification    ( 13107个结果
keepalived-master-slave
Master配置 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_connect_timeout 30 ...
分类:其他好文   时间:2021-04-27 14:42:00    阅读次数:0
2021-04-23【Git连接GitHub过程中遇到的问题】
1 Ruby@DESKTOP-4INK1I3 MINGW64 /f/Git/test (master) 2 $ git push origin master 3 fatal: unable to access 'https://github.com/xxx/test.git/': OpenSSL S ...
分类:其他好文   时间:2021-04-24 13:43:19    阅读次数:0
Codeforces 1516B AGAGA XOOORRR
题目链接: http://codeforces.com/problemset/problem/1516/B 题意 一个含有 n 个非负数的数组,定义某种操作可以把相邻的两个数通过 XOR 合并为一个数,即每次操作后数组的元素个数都会减 1。问是否可以经过若干次这样的操作使得数组中的元素都相等? 思路 ...
分类:其他好文   时间:2021-04-24 13:14:41    阅读次数:0
git推送代码一直报错Permission denied, please try again怎么解决?
今天在本机windows7上测试个git,想将git代码推送到代码服务器。结果git总是报错 $ git push -u origin master git@192.168.0.208's password: Permission denied, please try again. git@192. ...
分类:其他好文   时间:2021-04-21 12:18:25    阅读次数:0
git常用命令
一、Git版本控制 SVN:集中式版本控制 Git:分布式版本控制 git官网:https://git-scm.com git淘宝镜像地址:http://npm.taobao.org/mirrors/git-for-windows 工作流程:工作区 > 暂存区 > 本地仓库 > 远程仓库 二、Git ...
分类:其他好文   时间:2021-04-20 15:27:52    阅读次数:0
Array.prototype.fill 填充值被复用的问题
考察如下示例代码: // 创建二维数组 const arr = Array(2).fill([]); // 操作第一个元素 arr[0].push(1); // 结果是操作了所有数组 console.log(arr); // [ [ 1 ], [ 1 ] ] 和 new 不 new 关系,以下代码问 ...
分类:其他好文   时间:2021-04-20 15:27:38    阅读次数:0
Vue3.0路由跳转对象的传递和接收
1.当前路由传递对象参数 (1)通过this.$router.push传递 var arr = JSON.stringify(this.user) this.$router.push({name:'home',params:{user:encodeURIComponent(arr)}}) this. ...
分类:其他好文   时间:2021-04-20 14:26:59    阅读次数:0
git第一次使用
配置git: git config --global user.name "XXX" git config --gloaal user.email "XXX@...com" 文件在用户目录下 .gitconfig 中,可以手动删除 关联远程仓库 转到工程目录下 为了下次连接远程仓库不用输入密码,设置 ...
分类:其他好文   时间:2021-04-19 15:55:18    阅读次数:0
git相关操作之git push/pull origin branch时需要提供personal access tokens
首先github右上角个人点开 然后setting 然后 然后 然后 这个note我是随便填的 下面都勾选了,具体想搞明白各项什么意思的点击read more about... 最后generate token 下面有github文档的友情链接 算了 不会搞友情链接,自行复制一下吧 https:// ...
分类:数据库   时间:2021-04-16 11:41:01    阅读次数:0
SSH公钥:解决码云出现git@gitee.com: Permission denied (publickey)
问题描述: git push 提交是碰到 git@gitee.com: Permission denied (publickey) 这是因为github/gitee没有设置SSH公钥或公钥失效 1)重新生成ssh ssh-keygen -t rsa -C "1351655382@qq.com" 2) ...
分类:其他好文   时间:2021-04-15 12:39:13    阅读次数:0
13107条   上一页 1 ... 7 8 9 10 11 ... 1311 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!