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删除指定目录下的 所有文件, 命令如下:
1 删除
删除命令列表:
'git rm' [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet] [--] <file>...
git rm -fr .idea
git commit -m "无用"
git push
git push origin master:master