一、开始工作前的步骤 1、首先在需要查看的项目中右键选择 “Git Bash Here”,弹出命令框。 2、输入“git remote -v”查看项目远程地址,是否是自己的地址。 3、输入“git branch -a”查看远程项目所有分支,红颜色分支代表当前所在分支,其他的所列的就是所有分支了。 4 ...
分类:
其他好文 时间:
2020-06-04 15:21:01
阅读次数:
74
Mac上有没有好用的远程连接工具?remote desktop mac是一款适用于Mac操作系统的远程连接软件,可以帮助您快速连接到基于Windows的计算机,以便使用其程序和文件,访问数据等。配置连接时,Microsoft微软远程连接工具允许您决定应使用的分辨率,颜色质量,全屏模式,是否要全屏启动 ...
分类:
系统相关 时间:
2020-06-04 10:45:36
阅读次数:
105
cd project git init git remote add origin http://gitlab.xxx.com/group/project.git (删除本地origin:git remote rm origin) git add . git branch master (删除本地分 ...
分类:
Web程序 时间:
2020-06-03 10:44:44
阅读次数:
79
git全局设置 git config --global user.name ‘非池中物’ git cinfig --global user.email '103058 @qq.com' 创建git仓库 在码云创建仓库 在本地创建文件夹 右键打开Git Bush Here 初始化仓库 git init ...
分类:
其他好文 时间:
2020-06-02 18:50:03
阅读次数:
81
一个简单通用的 React 抛物线动画demo Usage import { parabola } from "./parabola" ... onAnimate = () => { const config = { ballWrapper: this.$wrapper, //小球的父容器 orig ...
分类:
其他好文 时间:
2020-06-02 09:19:53
阅读次数:
54
一、 Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态 git commit 提交 git branch -a 查看所有的分支git branch -r 查看远程所有分支git commit -am "init" 提交并且加注释 git remote a ...
分类:
其他好文 时间:
2020-06-02 00:03:34
阅读次数:
57
微服务与远程方法调用的引入 RPC 指的是 Remote Procedure Call,即远程方法调用(也叫远程服务调用、远程过程调用),这也是微服务架构的前导篇,因为微服务里面远程服务之间就是通过 RPC 协议进行数据传输的。 在介绍 RPC 协议之前,我们先厘清几个概念:单体应用、微服务应用、本 ...
分类:
其他好文 时间:
2020-06-01 21:00:22
阅读次数:
75
一、背景 项目中用到了多个第三方的SDK,其中有些外部服务是需要在AndroidManifest中配置的,并且通过形如android:process=":remote"配置单独的进程。如百度定位,对应service配置如下: <service android:name="com.baidu.loca ...
分类:
移动开发 时间:
2020-05-31 21:46:07
阅读次数:
119
官方文档: https://wiki.mikrotik.com/wiki/Manual:PPP_AAA on-up (script; Default: ) Execute script on user login-event. These are available variables that a ...
分类:
其他好文 时间:
2020-05-31 17:41:48
阅读次数:
87
#nignx方向代理 ##proxy_pass 字符串匹配情况 ####example 1: location /name/ { proxy_pass http://127.0.0.1/remote/; } proxy指定了uri,uri将会被代替,请求http://127.0.0.1/name/则 ...
分类:
其他好文 时间:
2020-05-31 15:56:32
阅读次数:
57