Remote branch created by others
$ git clone URL
$ git branch --remote # listing the remote branches
$ git checkout origin/feature
(detached HEAD)
$ git checkout main
$ git checkout -b feature origin/feature
$ git push # will push the the remote feature branch
$ git fetch # syncs the remote repository to the local one
$ git checkout feature
$ git merge origin/feature