[Git]: 取消commit及修改git默认编辑器为vim
程序员文章站
2024-02-22 23:58:04
...
-
修改git默认编辑器为vim
修改~/.gitconfig[core] editor=vim
-
修补commit信息
$ git commit -m 'initial commit' $ git add forgotten_file $ git commit --amend
-
取消上一次comiit
git reset HEAD CONTRIBUTING.md # 上一次更改 git reset --soft HEAD^
上一篇: SQLServer 使用 @@ERROR
下一篇: SQLServer 使用 @@ERROR