摘要: wx.showToast({ title: '需要您授权用户信息用于注册或登陆', icon: 'none', }) 阅读全文
posted @ 2020-08-07 16:43 Panax 阅读(287) 评论(0) 推荐(0) 编辑
摘要: wx.navigateToMiniProgram({ appId: '', success(res) { }, }) 阅读全文
posted @ 2020-08-07 16:42 Panax 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1. 刷新远程分支的命令行:git remote update origin -p 2. 获取远程分支,需要切换:git fetch origin branch_name3. 指定远程分支,便于git pull git push ,使用 git branch --set-upstream-to=or 阅读全文
posted @ 2020-08-07 16:37 Panax 阅读(1371) 评论(0) 推荐(0) 编辑
摘要: 解决办法: git config --system --unset credential.helper 此后又会重复让输入账号,密码,很烦,然后: git config --global credential.helper store 输入账号密码,下次就不会让重复输入了。 阅读全文
posted @ 2020-08-07 16:32 Panax 阅读(1039) 评论(0) 推荐(0) 编辑