首页 > 代码库 > git删除目录下的所有文件并提交

git删除目录下的所有文件并提交


      git删除指定目录下的 所有文件, 命令如下:

1 删除
删除命令列表:

'git rm' [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet] [--] <file>...


强制删除.idea下的所有文件
git rm -fr .idea




2 注释
git commit -m "无用"




3 提交
git push


以某个用户提交
git push origin master:master


git删除目录下的所有文件并提交