Bugzilla:Release Process: Difference between revisions

Line 191: Line 191:
for 5.0 and future releases.
for 5.0 and future releases.


Stable release tag in git:
Creating stable release branch in git initially:


   git checkout 4.4
   git checkout 4.0
   git push --delete origin bugzilla-stable
   git branch release-4.0-stable <commitid>
  git tag -f bugzilla-stable <commitid>
   git push origin release-4.0-stable
   git push origin bugzilla-stable


'''Note:''' Once 5.0 is released, we will no longer use bugzilla-stable on the 5.0 or future branches.
Updating stable release branch after bumping version number step:
 
  git checkout release-4.0-stable
  git merge origin/4.0
  git push


=== Generate Files to Release ===
=== Generate Files to Release ===
752

edits