重新排版,考虑写个脚本完成排版中的重复性工作
parent
50e52a7544
commit
fcd57df090
11
README.md
11
README.md
|
@ -4,9 +4,9 @@
|
||||||
## 所有人看过来
|
## 所有人看过来
|
||||||
1. Fork于[tips](https://github.com/git-tips/tips)项目
|
1. Fork于[tips](https://github.com/git-tips/tips)项目
|
||||||
|
|
||||||
2. **一定要先测试命令的效果后,再用于工作环境中,以防造成不能弥补的后果!**
|
2. **一定要先测试命令的效果后**,再用于工作环境中,以防造成不能弥补的后果!**到时候别拿着砍刀来找我**
|
||||||
|
|
||||||
3. 所有的命令都在`git version 2.7.4 (Apple Git-66)`下测试通过(安全可食用😊)
|
3. 所有的命令都在`git version 2.7.4 (Apple Git-66)`下测试通过
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -131,6 +131,13 @@ git commit --amend
|
||||||
git log
|
git log
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## 显示本地执行过git命令
|
||||||
|
就像shell的history一样
|
||||||
|
|
||||||
|
```
|
||||||
|
git reflog
|
||||||
|
```
|
||||||
|
|
||||||
## 修改作者名
|
## 修改作者名
|
||||||
```sh
|
```sh
|
||||||
git commit --amend --author='Author Name <email@address.com>'
|
git commit --amend --author='Author Name <email@address.com>'
|
||||||
|
|
Loading…
Reference in New Issue