- by admin
You can push the branch up to a remote very simply:git push origin newfeature
origin
is your remote name and newfeature
is the name of the branch you want to push up.git push origin :newfeature
newfeature
branch on the origin
remote, but you’ll still need to delete the branch locally with git branch -d newfeature
.