码迷,mamicode.com
首页 > 其他好文 > 详细

git删除中文文件

时间:2014-10-09 20:36:47      阅读:753      评论:0      收藏:0      [点我收藏+]

标签:blog   使用   ar   文件   sp   div   on   log   代码   

git中出现如下代码时,是因为文件中包含中文。而且我们也无法用 git rm name 命令来删除该文件。

deleted: "chrome_plugin/source_file/iHub\345\234\250\347\272\277\345\255\246\344\271\240\347\263\273\347\273\237.html"

  

这是git不支持中文所致,我们可以用如下代码让git不对中文文件名进行处理:

$ git config --global core.quotepath false

 

然后你再运行 git status ,你可以看到会有中文显示出来,然而,现在你仍然不可以使用 git rm name 来删除该文件。

 

你可以运行 git add -u 将所有改动的文件提交到暂存区,这样之后你无需使用 git rm name 命令,只需提交,就可以了。

$ git add -u

  

git删除中文文件

标签:blog   使用   ar   文件   sp   div   on   log   代码   

原文地址:http://www.cnblogs.com/ayseeing/p/4013807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!