在 git 文件中跟踪 Eclipse 任务列表
我正在尝试为我的一个项目制定一份任务清单。该项目位于 git 存储库中,我在各种不同的计算机上处理它。我想要的是将所有任务存储在我的 git 存储库中,这样无论我在哪里使用 Eclipse,我都可以看到我的任务。
Mylyn 任务列表似乎没有提供在 git 存储库中读取和写入任务的无缝解决方案。你有什么建议吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 Mylyn 将文件保存到工作区中的路径更改。然后你应该能够像其他东西一样使用 git 管理文件。但我不知道这种方法的多用户支持。
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.
git 只能跟踪文件,因此您需要导入/导出任务并将其存储在存储库中的文件中。
git can track only files so you need to import/export your tasks and store it in file in your repo.