Git随记:修订间差异
来自三线的随记
(创建页面,内容为“git config --global --edit git commit --amend --reset-author git config --global core.editor vim 分类:Linux”) |
小无编辑摘要 |
||
(未显示同一用户的4个中间版本) | |||
第4行: | 第4行: | ||
git config --global core.editor vim | git config --global core.editor vim | ||
git log - -abbrev-commit | |||
git diff --no-index --color --ignore-all-space | |||
git diff --ignore-all-space | |||
git checkout -b 创建并切换分支 | |||
git branch ''List, create, or delete branches'' | |||
git branch newBranch 创建分支 | |||
git reset | |||
git checkout | |||
git checkout -- ***** 把***文件在工作区的修改全部撤销,就是让这个文件回到最近一次<code>git commit</code>或<code>git add</code>时的状态。 | |||
git reset --hard | |||
<code>git reset HEAD <file></code>可以把暂存区的修改撤销掉(unstage),重新放回工作区: | |||
git update-index --assume-unchanged | |||
git update-index --no-assume-unchanged | |||
查看分支合并情况 | |||
git log --graph --pretty=oneline --abbrev-commit | |||
[[分类:Linux]] | [[分类:Linux]] |
2019年6月17日 (一) 02:46的最新版本
git config --global --edit
git commit --amend --reset-author
git config --global core.editor vim
git log - -abbrev-commit
git diff --no-index --color --ignore-all-space
git diff --ignore-all-space
git checkout -b 创建并切换分支
git branch List, create, or delete branches
git branch newBranch 创建分支
git reset
git checkout
git checkout -- ***** 把***文件在工作区的修改全部撤销,就是让这个文件回到最近一次git commit
或git add
时的状态。
git reset --hard
git reset HEAD <file>
可以把暂存区的修改撤销掉(unstage),重新放回工作区:
git update-index --assume-unchanged
git update-index --no-assume-unchanged
查看分支合并情况
git log --graph --pretty=oneline --abbrev-commit