Use this collection of repositories for creating release Tag for the Cricket
.
From a tar file
Unpack the tar file in a convenient directory, using tar -xzf tarfile.tgz -C destdir
.
Then change directory to the destdir
.
From gitlab-x.mcci.com
Clone the repository from MCCI's gitlab-x server using the command:
git clone --recursive [email protected]:Seenivasan/collection-cricket.git
Then change directories to the top level of the cloned repository.
- Source files -
collection-cricket/cricket/
- User Guide and Release Notes -
collection-cricket/doc/
- Installer for Windows and Mac -
collection-cricket/installer/
- README.md -
collection-cricket/
- RELEASE.md -
collection-cricket/
Update the Source
The source linked as submodule, move to the source directory verify the required changes for the current release and commit the changes with the release message.
Update the User Guide Dcoument
Update the User guide document 'MCCI-Cricket-UI-User-Guide' if needed and commit if any changes with release message.
For any changes in User Guide Document , it must be sent to MCCI document publish process.
Update the Installer
If any changes in installer script, update and commit the changes with release message.
Update the Readme.md
If any changes in installation and build procedure update the instructions in README.md and commit the changes with proper message.
Update the Release Notes
Update the Release notes with all updates made for the release and commit the changes with proper message.
For any changes in Release Notes , it must be sent to MCCI document publish process.
To create a release Tag from a git repo, follow this procedure.
- Create a tag for the release in the top-level repository. Usually this is of the form
Vx.y.z
.
git checkout master
git tag -a vx.y.z -m "release-Vx.y.z"
git push origin --tags