I want to create a remote branch called "development" from the remote "master".
Essentially duplicating remote "master" and name it "development"
What is the simple way to do this?
I am using Bitbucket
I want to create a remote branch called "development" from the remote "master".
Essentially duplicating remote "master" and name it "development"
What is the simple way to do this?
I am using Bitbucket
Clone the repository:
$ git clone <repo_url>
Create new branch:
$ git checkout -b development
Push the new branch:
$ git push -u origin development