git reset放弃修改&放弃增加文件
git reset放弃修改&放弃增加文件 1. 本地修改了一堆文件(并没有使用git add到暂存区),想放弃修改。 单个文件/文件夹: $ git checkout -- filename 所...
git reset放弃修改&放弃增加文件 1. 本地修改了一堆文件(并没有使用git add到暂存区),想放弃修改。 单个文件/文件夹: $ git checkout -- filename 所...
githtml {overflow-x: initial !important;}:root { --bg-color:#ffffff; --text-color:#333333; --select-text-bg-color:#B5D6FC; --select-text-font-color:auto; --monospace:"Lucida Console",Consolas,"Courier",monospace; } html { font-size: 14px; background-color: var(--bg-color); color: var(--text-color); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; } body { margin: 0px; padding: 0px; height: auto; bottom: 0px; top: 0px; left: 0px; right: 0px; font-size: 1rem; line-height: 1.42857; overflow-x: hidden; background: inherit; tab-size: 4; } iframe { margin: auto; } a.url { word-break: break-all; } a:active, a:hover { outline:...
github 上传大文件100MB姿势 具体就是安装git-lfs,先下载,然后就是一顿操作: 先在web建立一个空仓库 然后建立跟仓库名一样的文件夹,并执行...
git 对比两个分支差异 1. 显示出branch1和branch2中差异的部分 git diff branch1 branch2 --stat 2. 显示指定文件的详细差异 git diff branch1 branch2 具体文件路径 3. 显示出所有有差异...
git 流程 正常上线 git clone git checkout dev git checkout -b feature-function git add . git commit -m '结束功能开发' git checkout dev git merge feature-function git push origin dev git checkout -b release-2019-09-29 git push origin release-2019-09-29 线上发现bug 紧急上线 git checkout -b...