Creating and pushing lightweight tags
You can use the Git Client to:
- Create lightweight tags.
- Push changes to Dimensions CM.
- Create new changesets.
- Store lightweight tag information as a property of a changeset.
Example:
- Clone a stream:
- Make changes to the code.
- Commit the changes and create a lightweight tag called
mywork
: - Push the lightweight tag to Dimensions CM:
git clone dimensions://cmserver/cm_typical@dim14/qlarius/java_brancha_str .
git commit –a –m “comment for my changes”
git tag mywork
git push origin mywork
The push
command:
- Delivers the code changes.
- Creates a new Dimensions CM changeset with the tag
mywork
.