Currently I am migrating PVCS source code to GIT Repository.
As there is no specific tool which will migrate PVCS to GIT. I used 3rd party tool and SVN as bridge repository.
I am successful in migrating PVCS code to SVN as mentioned below.
PVCS Trunk --> SVN Trunk
PVCS branches --> SVN Branches
PVCS Labels --> SVN Tags
After the migration I found that one more step was missing.
In PVCS we have a Promotion Group and it is not migrated to SVN.
Kindly let me know what is Promotion Group in PVCS and how it will be migrated to SVN.
Is there any concept called promotion Group in Bitbucket
PVCS promotion groups are used to handle the movement of code from dev through qa to production. you define the groups you want.
to do something similar in git you can use branches to represent these different states or "promotion groups". Here is an example model. Take a look at git flow to see one way of doing this.