Ben Ruijl
Ben Ruijl

Reputation: 5143

Keeping track of Eclipse task list in git file

I am trying to make make a task list for one of my projects. The project is in a git repository and I work on it from various different computers. What I want is to store all my tasks in my git repo, so that wherever I use Eclipse, I can see my tasks.

The Mylyn task list doesn't seem to offer a seamless solution to read and write my tasks in my git repo. Have you got any suggestions?

Upvotes: 2

Views: 798

Answers (2)

Stephan
Stephan

Reputation: 1190

You can change the path where Mylyn saves its files to something inside your workspace. Then you should be able to manage the files with git just like everything else. I don't know about the multi user support of this approach though.

Mylyn preferences

Upvotes: 3

Tomasz Wysocki
Tomasz Wysocki

Reputation: 11578

git can track only files so you need to import/export your tasks and store it in file in your repo.

Upvotes: 0

Related Questions