From the course: Learning GitHub
Unlock this course with a free trial
Join today to access over 25,500 courses taught by industry experts.
Create a pull request - GitHub Tutorial
From the course: Learning GitHub
Create a pull request
- [Instructor] If you remember from the previous videos, we are using the GitHub flow and this methodology to work with Git includes the pull request. But we are able to work with the pull request directly from GitHub Desktop application? Absolutely, yes. In the last video of this section, we made some changes in the repository and now, we have to synchronize everything with the remote branch. Now, for instance, I can go here, Update README, it's a good comment. I can commit everything to the branch feature001, and then I can push origin so I can upload everything to our new branch. And now, we want to propose our changes to the rest of the team to merge all the code in the main branch. In order to do that, we can now click on the blue button Create Pull Request directly from the GitHub Desktop application. After clicking, the application opens the default web browser in the pull request creation page with the right branches selected. In our case, master and feature001 branches. From…