On Github, I wanted to make a change to a pull request.
1. git fetch origin
2. git checkout -b show-buttons origin/my-branch
Then I made some changes to files.
Now I want to add these files back to the pull request, and finish merging it with master and pushing it. What are the right next steps?
Here is what I was thinking:
3. git add .
4. git commit -m "Fixed some bugs on mypullrequest."
5. git merge master
6. git push origin master