M4 Architecture Armv7E-M Harvard ISA Support Thumb/Thumb-2 Pipeline 3-stage + branch speculation DSP Extensions Single cycle 16/32-bit MAC Single cycl ...
分类:
其他好文 时间:
2019-07-11 17:09:07
阅读次数:
130
Linear algebra is the branch of mathematics concerning vector spaces and linear mappings between such spaces. It includes the study of lines, planes, ... ...
分类:
其他好文 时间:
2019-07-07 17:34:58
阅读次数:
79
1、工作流程模式: 首先,可以试图用git push origin branch-name推送自己的修改 如果推送失败,则因为远程分支比你的本地更新,需要先用git pull试图合并 如果合并有冲突,则解决冲突,并在本地提交 没有冲突或者解决掉冲突后,再用git push origin branch ...
分类:
其他好文 时间:
2019-07-06 17:31:54
阅读次数:
132
【初始化】git config --global user.name “P13”git config --global user.email “公司邮箱”本地新建[文件夹]作为代码目录cd [文件夹]git clone [项目git地址] git clone -b [branch name] [项目 ...
分类:
其他好文 时间:
2019-07-04 15:55:13
阅读次数:
79
1 进入你的home目录 cd ~ 2 编辑.bashrc文件 vi .bashrc 3 将下面的代码加入到文件的最后处 function git_branch { branch="`git branch 2>/dev/null | grep "^\*" | sed -e "s/^\*\ //"`" ...
分类:
系统相关 时间:
2019-07-03 00:43:49
阅读次数:
220
创建分支 查看分支 git branch 创建分支 git branch 切换分支 git checkout 创建并切换分支 git checkout b 合并分支(需要先切换到主分支) git merge 删除分支 git branch d ...
分类:
其他好文 时间:
2019-06-29 16:26:11
阅读次数:
96
1. 先看一下git的命令: 查看本地分支 git branch ; 查看远程分支 git branch -r ; 切换分支 git checkout -b agrochemical origin/agrochemical; 查看所属分支 git branch -a; 回退命令: $ git res ...
分类:
其他好文 时间:
2019-06-27 13:34:32
阅读次数:
116
首先git是什么?git是github上的一个代码托管工具,是一款代码版本管理工具,github上的代码是基于git来进行托管的。github是全球的开源社区。可以在里面搞很多事情。只要会搞事情的话。 git基本命令: 1. git init 表示初始化一个Git仓库。 2. git status ...
分类:
其他好文 时间:
2019-06-26 00:55:01
阅读次数:
107
删除本地分支: 1.查看本地分支列表 git branch 2.删除本地分支 git branch -d 分支名称 删除远程分支: 1.查看远程分支列表 git branch -a 2.删除远程分支 git push origin --delete 远程分支名称 ...
分类:
其他好文 时间:
2019-06-25 18:34:45
阅读次数:
126
当切换到主分支后,准备 git pull 拉取远程 master 分支时,提示本地主分支显示有 21 个commits 问题原因: 因为你修改了 local master 本地的主分支,可以选择以下方法之一: 保持本地 master 的内容,使用 git push origin,将本地的修改直接提交 ...
分类:
其他好文 时间:
2019-06-25 15:01:45
阅读次数:
97