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
More Posts related to Git,
- How to ignore files in git using .gitignore file
- How to update expired GitHub token on local git remote config
- How to undo last Git Commit on Local Repository?
- Git Commit - Author identity unknown, Please tell me who you are email
- Git: Step-by-Step - How to Push Local Brach to GitHub
- [Solution] fatal: not a git repository (or any of the parent directories): .git
- Remove git config at Local, Global or System Levels?
- Change the default git branch name from master to main
- fix fatal: --local can only be used inside a git repository error
- Git Remove Untracked Files using Command
- How to remove or unstage a file from git staged area
- Fix Git: Warning: could not find UI helper GitHub.UI on Windows
- Fix [oh-my-zsh] Cant update: not a git repository
- Get List of all local branches git command
- Github: fatal: Authentication failed Support for password was removed on August 13, 2021
- [fix] fatal: this operation must be run in a work tree in git
- How to Install Git on Windows
- Perform an Empty Commit in Git without anything in Staging Area
- Rename git branch on Local and GitHub Remove using Command
- Fix: error: could not lock config file /etc/gitconfig: Permission denied
- Get the file location of git config values
- Git: Delete Branch Locally and Remotely at Origin
- fatal: Unable to create '/c/git_repo/.git/index.lock': File exists. If no other git process is currently running, this probably means a git process crashed in this repository earlier.
- Github: How to Invite Collaborators
- How to change directory in Git bash
More Posts:
- How to stop or quit cat command? - HowTos
- How to run Java Unit Test cases with Apache Maven? - Java
- Force android app to run in Landscape mode programatically - Android
- How to add to PATH in macOS Big Sur - MacOS
- How to display Java Date Time timezone GMT/UTC offset using SimpleDateFormat - Java
- SharePoint List excel import - This table exceeds the maximum number of supported rows - SharePoint
- Fix Microsoft Office 365 error code 135011 - Your organization has disabled this device - Microsoft
- AlertDialog with no buttons (just text message) - Android