- 命令行窗口中编辑文件
vi 文件名
完成后 按ESC键,以确保您不在编辑模式,然后键入 :wq
- git push 报错:
error: commit 8aa8e31: email address yin.jiaqing@haustart.com is not registered in your account,
错误是说邮箱没有注册,可是用git config 查看了user.email 和user.name 都有内容啊。
解决方法:重新git config --global user.name 和user.email 然后需要 git commit --amend --reset-author
然后就可以提交了 - git常用命令