If you are working on your project and ready to merge your release branch into master (production) then you can follow the below steps in git command line,
Step 1: Make sure your code is committed on your release branch, of the feature branch that you are going to commit to master.Step 2: Move current project to master branch
# git checkout master
Step 3: Merge your branch to master branch
# git merge release-branch
Step 4: Commit the branch into master branch
# git commit -a
❗️Though we do not encourage to make use of the words master/slave as we really care about Diversity and Inclusion, this article is just for demonstration purpose and encourage everyone to make use of alternate words for repos like production/staging
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!