git 删除已提交的文件夹

删除已经提交的.idea文件夹

git pull origin master                    # 将远程仓库里面的项目拉下来 //--cached不会把本地的test删除
git rm -r --cached .idea              # 删除.idea文件夹
git commit -m '删除.idea'        # 提交,添加操作说明
git push -u origin master               # 将本次更改更新到github项目上去

git忽略某个目录或文件不上传

在.gitignore文件加调用文件夹/文件

node_modules # 忽略文件夹

*.map # 忽略所有以.map结尾文件

.DS_Store
/node_modules
/dist
/unpackage
/.hbuilderx

/tests/e2e/videos/
/tests/e2e/screenshots/

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.vs
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
*.iml
*.lock
package-lock.json

 

posted @ 2022-04-28 16:41  风花一世月  阅读(55)  评论(0编辑  收藏  举报