I have a repository on github and have created a branch. I am able to create a new local repository on my machine and clone from the main repository.
I now want to make some changes to the code and push to the main repository.
I have run through the steps, git status
to check files, git add .
, git commit -m ""
, and finally git push origin <branch_name>
.
How do I make a pull request via the command line to the main branch of my repository so that a pull request can be seen for the main branch?