Clone git-repository

Need a little help for git:

I will clone the stable release for ArduCopter-3.3.3 via terminal using “git clone …”.
What is the right URL for that?
git clone https://github.com/ArduPilot/ardupilot.git clones the current master, and that is 3.4-dev.

Cheers
Axel

Try this:
git clone https://github.com/ArduPilot/ardupilot.git -b ArduCopter-stable

ArduCopter-stable is a tag for 3.3.3.

Mike

1 Like

@iseries that command your wrote is specific to a branch, which should be Copter-3.3 not the tag name

i.e. git clone -b ArduCopter-stable https://github.com/ArduPilot/ardupilot.git

Thx to bill and Mike,

it works fine :slight_smile: