git去除.idea
文章目录
- 目录结构
- 1、创建.gitignore
- 2、将.gitignore文件上传到远程仓库
- 3、删除git的.idea文件
- 4、同步到远程仓库
目录结构
|-.idea
|-main.py
1、创建.gitignore
目录结构
|-.idea
|-main.py
|-.gitignore
.gitignore内容
/.idea/*
2、将.gitignore文件上传到远程仓库
git pull
git add .gitignore
git commit -m 'edit .gitignore'
git push origin master
3、删除git的.idea文件
git rm --cached -r .idea
4、同步到远程仓库
git commit -m 'delete .idea'
git push origin master