欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[Git]: 取消commit及修改git默认编辑器为vim

程序员文章站 2024-02-22 23:58:04
...
  1. 修改git默认编辑器为vim
    修改~/.gitconfig

     [core]
     editor=vim
    
  2. 修补commit信息

    $ git commit -m 'initial commit'
    $ git add forgotten_file
    $ git commit --amend
    
  3. 取消上一次comiit

    git reset HEAD CONTRIBUTING.md
    # 上一次更改
    git reset --soft HEAD^