Page MenuHomeDevCentral

gitignore vim and emacs temporary file
AbandonedPublic

Authored by dereckson on Apr 14 2015, 18:30.
Tags
None
Referenced Files
F3744643: D12.id.diff
Fri, Nov 15, 07:54
Unknown Object (File)
Sun, Nov 10, 18:52
Unknown Object (File)
Sun, Nov 10, 18:10
Unknown Object (File)
Sun, Nov 10, 17:22
Unknown Object (File)
Sun, Nov 10, 15:24
Unknown Object (File)
Sun, Nov 10, 12:53
Unknown Object (File)
Sun, Nov 10, 12:53
Unknown Object (File)
Thu, Nov 7, 12:54
Subscribers
None

Details

Reviewers
spI33n

Diff Detail

Lint
No Lint Coverage
Unit
No Test Coverage
Branch
feature/csv2json

Event Timeline

spI33n retitled this revision from to gitignore vim and emacs temporary file.
spI33n updated this object.
spI33n edited the test plan for this revision. (Show Details)
spI33n added a reviewer: dereckson.
  • .gitignore change looks good to me
  • src/.testConvertCsvToJson.py.swp should be removed (git rm, git commit --amend)
dereckson requested changes to this revision.Apr 14 2015, 22:07
dereckson edited edge metadata.

I'm not very enthusiast to start to add dozens of rules to cover each editor on the market in each repo.

To ask Git to ignore files:

  • create a ~/.gitignore_global file to add these personal rules
  • set this file in yout Git preferences: git config --global core.excludesfile ~/.gitignore_global
This revision now requires changes to proceed.Apr 14 2015, 22:07
dereckson abandoned this revision.
dereckson edited reviewers, added: spI33n; removed: dereckson.

Local editors rules should be added to a global list, set for the host with the Git core.excludesfile setting.