[issue29510] gitignore settings files for Eclipse IDE

2017-05-24 Thread G Young
Changes by G Young : -- pull_requests: +1873 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue29510] gitignore settings files for Eclipse IDE

2017-03-24 Thread Rajath Agasthya
Changes by Rajath Agasthya : -- pull_requests: +715 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Jim DeLaHunt
Jim DeLaHunt added the comment: I have set up a global gitignore, and it works for me. % git config --global core.excludesfile ~/.gitignore_global (Amusingly, I had _already- set a global gitignore, but I had forgotten it existed, and it didn't ignore these IDE files.) I agree that we should n

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread INADA Naoki
INADA Naoki added the comment: I agree with Berker. But some git/github tips are very useful for CPython core developers while they aren't CPython specific. And some of them are not in beginner's guide. I think it's worth enough to add link to such tips. * Use gitignore_global to ignore IDE/E

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report and for the patch, Jim! I agree with Inada. global_gitignore is a better way to achieve this. > Maybe a better solution would be to add something to the devguide about > excluding IDE settings files, with a link to the Github instructions.

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Jim DeLaHunt
Jim DeLaHunt added the comment: gitignore_global is a great idea. I had not heard of it before. But here it is: https://help.github.com/articles/ignoring-files/ . This instruction also has a link to a gist with a lot of helpful global ignores. I understand your reluctance to add entries for

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread INADA Naoki
INADA Naoki added the comment: We'll move to github soon. So no need for caring hgignore. While there is `.vscode` in gitignore already, I'm not fan of adding hundreds of IDE specific rule to gitignore. Why don't you use gitignore_global? -- nosy: +inada.naoki

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Jim DeLaHunt
Jim DeLaHunt added the comment: I'm now looking at cpython as retrieved from Mercurial by Eclipse. It appears to be concerned by the presence of .project which is also an Eclipse settings file. It might be reasonable to extend the scope of this issue to include telling Mercurial to ignore s

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Jim DeLaHunt
Changes by Jim DeLaHunt : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Jim DeLaHunt
Jim DeLaHunt added the comment: A fix is in GitHub cpython PR #75. -- pull_requests: +26 ___ Python tracker ___ ___ Python-bugs-list m

[issue29510] gitignore settings files for Eclipse IDE

2017-02-09 Thread Jim DeLaHunt
New submission from Jim DeLaHunt: The Eclipse IDE, and its relatives pydev and LiClipse, store settings in the root of a repository. It would be nice for the master .gitignore file to ignore these files, so that individual developers don't have to do this. I am preparing a GitHub Pull Request