本文介绍了git没有干净地退出(退出代码128)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我得到这个错误。尝试了
我使用tortoise git&有git版本1.9.5.msysgit.1
解决方案
我想你没有配置你的电子邮件和名称。
如果没有配置它们。
以下是配置步骤。
git config --global user.nameYour Name
git config --global user.emailyou@example.com
i am getting this error.Tried all the solution from How to resolve "git did not exit cleanly (exit code 128)" error on TortoiseGit?
I m using tortoise git & have git version 1.9.5.msysgit.1
解决方案
I guess you did not configured your email and name.If not Configure them.
These are the steps to configure.
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
这篇关于git没有干净地退出(退出代码128)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!