|
You can change the past!
|
- What do you get when you change the past? A parallel universe!
- What are branches useful for?
- Creating a branch
$ cvs tag -b MY_PROJ_1_1_0-bugfix
- Move working copy to the branch
$ cvs update -r MY_PROJ_1_1_0-bugfix
- Checking out directly from the branch
$ cvs checkout -r MY_PROJ_1_1_0-bugfix
|
|