Reputation: 344
I'm refactoring my Java code in Eclipse, and they are saved in Refactor History. But I need push my project to Bitbucket, and I want that Refactor History push too.
How can I do it?
Upvotes: 0
Views: 117
Reputation: 111142
The refactoring history is stored in the Workspace meta data in the:
.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings
directory.
I don't think this data is really useful for storing in git.
Upvotes: 1