Git on Windows 一些问题

问题汇总

1. 卸载Git时,bin和usr目录删不掉

报错:bin, usr目前需要admin权限删除,或者这个目录被其他文件引用

打开taskmgr,找到所有引用 git/bin/ 下的文件的进程,全部停掉。

2. Git无法运行Python

报错:没有报错信息,进程一直hang住

“This is a known bug in MSys2, which provides the terminal used by Git Bash. You can work around it by running a Python build without ncurses support, or by using WinPTY

因此,不要用Git-bash运行Python,只有用Git/bin下面的命令运行就没有问题。

Reference

http://stackoverflow.com/questions/32597209/python-not-working-in-the-command-line-of-git-bash

原文地址:https://www.cnblogs.com/qingwen/p/5800028.html