Answers for "git publish branch command line"

10

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
5

create local and remote branch

git checkout -b yourBranchName
git push -u origin yourBanchName
Posted by: Guest on April-27-2020
0

how to publish branch in git

$ git checkout contact-form
Switched to branch 'contact-form'

$ git push -u origin contact-form
Counting objects: 36, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (31/31), done.
Writing objects: 100% (36/36), 90.67 KiB, done.
Total 36 (delta 12), reused 0 (delta 0)
Unpacking objects: 100% (36/36), done.
To file://Users/tobidobi/Desktop/GitCrashkurs/remote-test.git
 * [new branch]    contact-form -> contact-form
Branch contact-form set up to track remote branch contact-form from origin.
Posted by: Guest on July-02-2021

Code answers related to "git publish branch command line"

Browse Popular Code Answers by Language