user2008973
user2008973

Reputation: 445

Netbeans - Clone specific branch of bitbucket repository

I would like to clone just a specific branch of a BitBucket repository through netbeans.

Is something like this possible?

Thank you!

Upvotes: 1

Views: 2198

Answers (1)

QArea
QArea

Reputation: 4981

If you use Git repository it is simple.

  • In menu press Team > Git > Clone
  • Input URL your repository: https://bitbucket.org/xxxxx/xxxxx.git and press Next
  • Select Checkbox(es) with required branch(es)

    If the you type 'git branch -v' in project folder then you will see your branch name

Step 1 enter image description here

Step 2 enter image description here

Upvotes: 1

Related Questions