How can I mark a group of changes/changesets in SVN, Hg, or Git
- by sylvanaar
I would like to mark an arbitrary group of commits/changesets with a label.
Commit 1 *Mark 1
Commit 2 *Mark 2
Commit 3
Commit 4 *Mark 1
Commit 5 *Mark 2
The goal is to easily locate all the changes for a specific mark, and to have that grouping persisted in the VCS directly, as opposed to some outside system like a bug tracking system.
The…