Remote branch



$ git branch
$ git branch --remote
$ git branch --all

$ git config --global push.default  simple

$ git co -b feature

$ git push -u origin feature

$ git fetch
$ git co feature
$ git merge origin/feature
$ git push

$ git push origin --delete feature

# older version:
$ git push origin :feature