perf的事件包括: 硬件事件:branch-instrctions / branch-miss / bus-cycles / cache-miss / cache-reference / cycles / instructions 软件事件:cpu-clocks / tasks-clock ... ...
分类:
其他好文 时间:
2017-12-01 11:45:22
阅读次数:
393
上次写到《idea下仓库初始化与文件提交涉及到的基本命令》,今天我们继续写IDEA环境下GIT操作之二--idea下分支操作相关命令以及分支创建与合并。 1、idea 下分支操作相关命令 git checkout -b new_branch 创建新的分支git checkout new_branch ...
分类:
其他好文 时间:
2017-11-30 17:10:44
阅读次数:
227
今天主要记录一下平常工作当中使用的git操作: 1.git的安装这里省略; 2.git的操作指令: 删除某一个文件: rm -rf node,然后按下tab 查看分支: git branch -a 合并分支: git checkout -b 迭代 origin/迭代; 然后在切换分支: git br ...
分类:
其他好文 时间:
2017-11-28 01:26:53
阅读次数:
147
查看远程分支 git branch -a 删除远程分支 删除本地分支 创建本地仓库分支并推送到远程仓库(直接git push也行) 注意 新建本地分支后将本地分支推送到远程库, 使用git pull 或者 git push 的时候报错 是因为本地分支和远程分支没有建立联系 git branch -v ...
分类:
其他好文 时间:
2017-11-27 10:59:25
阅读次数:
161
首先,我们创建dev分支,然后切换到dev分支: $ git checkout -b dev Switched to a new branch 'dev' git checkout命令加上-b参数表示创建并切换,相当于以下两条命令: $ git branch dev $ git checkout d... ...
分类:
其他好文 时间:
2017-11-26 19:40:45
阅读次数:
143
1 查看远程分支 [plain] view plain copy $ git branch -a * br-2.1.2.2 master remotes/origin/HEAD -> origin/master remotes/origin/br-2.1.2.1 remotes/origin/br- ...
分类:
其他好文 时间:
2017-11-23 19:38:06
阅读次数:
194
The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number theoreticians ...
分类:
其他好文 时间:
2017-11-23 08:41:09
阅读次数:
153
sudodockerrun-d--namerancher-server-p8080:8080--restart=unless-stopped-eDEFAULT_CATTLE_CATALOG_URL=‘{"catalogs":{"library":{"url":"https://gitee.com/rancher/rancher-catalog.git","branch":"k8s-v1.6-release"}}}‘rancher/server:stable&&sudodockerlogs-fr..
分类:
其他好文 时间:
2017-11-22 21:57:31
阅读次数:
144
这一节课开始了整数规划,并讲解了 Gomory 割平面法与分枝定界法(branch and bound)。 ...
分类:
其他好文 时间:
2017-11-21 23:40:34
阅读次数:
206
远程分支:远程跟踪分支remote branch是对远程分支状态的引用,是不能移动的,它会根据远程分支变化以及网络通信自动移动。Git服务器包含了远程分支master,在My Computer中的remote branch就是远程跟踪分支,是对git服务器里面master branch的引用,不可移 ...
分类:
其他好文 时间:
2017-11-20 16:42:03
阅读次数:
116