Answers for "push local master branch into remote branches release"

21

push a local branch

Create a new branch:
git checkout -b feature_branch_name

Edit, add and commit your files.

Push your branch to the remote repository:
git push -u origin feature_branch_name
Posted by: Guest on March-23-2020
0

push local branch to another remote branch

$ git push origin <local_branch>:<remote_branch>
Posted by: Guest on February-24-2022

Code answers related to "push local master branch into remote branches release"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language