git进行rebase操作报错提示“hint: Waiting for your editor to close the file... ”
·
问题: 在git bash中使用git rebase -i
时提示:hint: Waiting for your editor to close the file... "C:/Program Files (x86)/GitExtensions/GitExtensions.exe"
原因: 这是由于前端时间我卸载了GitExtensions
工具,导致git默认的编辑器还是用的GitExtensions
,当需要进行编辑的时候找不到这个工具,所以报错
解决办法: 在git bash中使用以下命令修改默认编辑器为vim
git config --global core.editor 'vim'
更多推荐
已为社区贡献3条内容
所有评论(0)