码迷,mamicode.com
首页 >  
搜索关键字:branch    ( 1809个结果
perf 的事件
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环境下GIT操作浅析之二-idea下分支操作相关命令
上次写到《idea下仓库初始化与文件提交涉及到的基本命令》,今天我们继续写IDEA环境下GIT操作之二--idea下分支操作相关命令以及分支创建与合并。 1、idea 下分支操作相关命令 git checkout -b new_branch 创建新的分支git checkout new_branch ...
分类:其他好文   时间:2017-11-30 17:10:44    阅读次数:227
常用的Git操作
今天主要记录一下平常工作当中使用的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进阶
查看远程分支 git branch -a 删除远程分支 删除本地分支 创建本地仓库分支并推送到远程仓库(直接git push也行) 注意 新建本地分支后将本地分支推送到远程库, 使用git pull 或者 git push 的时候报错 是因为本地分支和远程分支没有建立联系 git branch -v ...
分类:其他好文   时间:2017-11-27 10:59:25    阅读次数:161
git创建与合并分支
首先,我们创建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
git 查看远程分支、本地分支、创建分支、把分支推到远程repository、删除本地分支
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
poj_2689_Prime Distance
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
docker k8s
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
应用运筹学基础:整数规划 (1) - 线性整数规划、割平面法与分枝定界法
这一节课开始了整数规划,并讲解了 Gomory 割平面法与分枝定界法(branch and bound)。 ...
分类:其他好文   时间:2017-11-21 23:40:34    阅读次数:206
Git-远程操作
远程分支:远程跟踪分支remote branch是对远程分支状态的引用,是不能移动的,它会根据远程分支变化以及网络通信自动移动。Git服务器包含了远程分支master,在My Computer中的remote branch就是远程跟踪分支,是对git服务器里面master branch的引用,不可移 ...
分类:其他好文   时间:2017-11-20 16:42:03    阅读次数:116
1809条   上一页 1 ... 83 84 85 86 87 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!