Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
width70%

Getting set up

To get started sign up for an account on Bitbucket

Image Added

Fork the main repository

Image Added

Now you can clone your fork using the https or ssh protocol  e.g.

Code Block
git clone https://YOUR_BB_USERNAME@bitbucket.org/YOUR_BB_USERNAME/librepilot.git

for https which is the easiest to set up.

Next add the main LibrePilot remote, you can use anything that makes sense instead of upstream, I simply use bb to keep the length down.

Code Block
git remote add upstream https://bitbucket.org/librepilot/librepilot.git

Optional

You shouldn't need a next branch in your fork so:

Code Block
git fetch upstream
git branch --set-upstream-to=upstream/next next 
git push origin --delete next
Column
width30%
Panel
titleIn this page
Table of Contents

...