Push Git branch to remote

PHOTO EMBED

Tue Apr 04 2023 04:16:03 GMT+0000 (Coordinated Universal Time)

Saved by @tofufu #bash #shell #git

$ git push -u origin feature


# Before pushing, make sure to pull the changes from the remote branch and integrate them with your current local branch.

$ git pull

$ git checkout my-feature

$ git merge origin/feature

$ git push origin my-feature:feature
content_copyCOPY

https://devconnected.com/how-to-push-git-branch-to-remote/