美文网首页
git commit -v ""hint: Waiting f

git commit -v ""hint: Waiting f

作者: 月沉眠love | 来源:发表于2019-12-24 09:20 被阅读0次
hint: Waiting for your editor to close the file... error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
屏幕快照 2019-12-24 上午9.18.08.png
解决方法:
git config --global core.editor /usr/bin/vim

然后再commit

相关文章

  • git commit -v ""hint: Waiting f

    解决方法: 然后再commit

  • git commit 规范

    Git Commit Messge 消息格式 样例 Type 取值范围 标记含义加入版本feature新功能v1f...

  • git常用操作

    git clone git add .git add -f .git commit -m '###'git pul...

  • git强制重置远程分支的head

    首先,本地 git reset 然后,git push origin master -f

  • git

    1 git add .2 git commit -m ' 提交的信息 '3 git review -v...

  • git 入门

    git 入门学习笔记----3个入门命令:git init、git add、git commit -v 学习场景(...

  • git入门

    git init,git add,git commit -v的使用 git init// 初始化本地仓库 .git...

  • git 入门

    git入门 git init git add git commit -v git init 初始化本地仓库 .gi...

  • git push -f 强推

    git commit -m "feat:sonar问题修改" git push -f "origin" mq202...

  • git 回滚到之前某一commit

    git log查看commit-id, 然后git reset --hard 8ff24a6803173208f3...

网友评论

      本文标题:git commit -v ""hint: Waiting f

      本文链接:https://www.haomeiwen.com/subject/nmjxoctx.html