首页 > 代码库 > git rm使用

git rm使用

git rm file将文件从缓存区和你的硬盘中(工作目录)删除

git rm demo1.txt

命令行输出

技术分享


git rm --cached file在工作目录中留着该文件

git rm --cached hello.php

命令行输出

技术分享

本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1907157

git rm使用