How do i git push specific branch?

You can use the following:

git push <remote_alias> <branch_name>

So in your case, it would probably be:

git push origin master

Leave a Comment