git did not exit cleanly的解决办法
git did not exit cleanly (exit code 1) 的解决办法
问题描述 :
关于Git的使用,相信大家平时都比较普遍用Git来做项目代码的管理 , 偶尔会有一些错误的操作会导致Git报错 , 这样问题就来了。
具体错误信息如下:
git.exe push --progress "origin" master
To https://github.com/Jackson-AndyLau/CMSManager.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/Jackson-AndyLau/CMSManager.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
关键报错 :
git did not exit cleanly (exit code 1) (12359 ms @ 2018-07-01 09:41:24)
如下图所示:
解决办法:
关于这个问题,在网上搜罗了一下,很多工程师都遇到过,解决方法也是五花八门,要不删除一些文件,要不修改一些配置文件,个人感觉有点麻烦 .
比较简单易懂方便的方法 , 可以新建目录 , 克隆git仓库目录 , 把新克隆下来的 .git 文件复制到原目录替换原目录的 .git 文件即可 . 此问题可以理解为 .git 文件记录错误问题 , 恢复 .git 文件即可正常使用 , 亲测有用