A file in git associated with the repo, under revision control, but not associated with any particul
- by anon
Say I have a file called: "todo"
It's a list of things I want to do for this project.
I want this file associated with my git repo.
I want there to be different revisions of this file,
however, I don't want it associated with particular branches. For example:
On branch master.
Create some basic ToDo items
Branch "dev1"
Add more stuff to todo list
Branch "dev2" from master.
Add more stuff to todo list
Now, I have different revisions of the todo file lying all around.
I just want there to be one "todo" file -- is this possible? Does this make sense? Am I misusing todo somehow?