0

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

1 Answers1

0

Clone the repository:

$ git clone <repo_url>

Create new branch:

$ git checkout -b development

Push the new branch:

$ git push -u origin development
Andy Sukowski-Bang
  • 1,402
  • 7
  • 20