可能有.idea等非项目文件混进去了
-
将.idea目录加入ignore清单:
$ echo '.idea' >> .gitignore
-
$ git rm —cached -r .idea
-
$ git add .gitignore
-
$ git commit -m '(gitignore commit and remove .idea)'
-
$ git push
出处:https://www.cnblogs.com/elsonwe/p/6472943.html
可能有.idea等非项目文件混进去了
将.idea目录加入ignore清单:
$ echo '.idea' >> .gitignore
$ git rm —cached -r .idea
$ git add .gitignore
$ git commit -m '(gitignore commit and remove .idea)'
$ git push
出处:https://www.cnblogs.com/elsonwe/p/6472943.html