Merging the New Feature to Master Branch

So now we are ready to push our change to master. I would type the following commands in my terminal, then creating a pull request in GitHub.

cd <my git folder>
git add .
git commit -am "Hyperlink Feature"
git checkout master
git pull
git checkout feature/hyperlink
git merge master
git push origin feature/hyperlink

Creating and Merging Pull Request

Pull request allows your teammates to review our change before it is merged into the master. Here are some links for background understanding on how does it work:

  1. About Pull Request
  2. Creating a Pull Request
  3. Merging Pull Request
  4. Our Pull Request