Answers for "how to publish a branch in git"

39

git push to branch

# If its your first push
git push -u origin BRANCH

# Otherwise
git push origin BRANCH
Posted by: Guest on March-20-2020
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
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
3

github Push local branch to Remote

git push origin <Branch_Name>
Posted by: Guest on August-23-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language