I want to overrite master with a particular branch after making changes to it, what I done to do it is:
Step 1: Checkout brranch from Git, using command :
git checkout branch_name
Step 2: I done some changes in code, now I want to make this branch as master, for that I first run the command:
git status
Above command list me all the modified files.
Now my question, what all I need to do overrite master with this particular branch "my_branch"?