Downloading specific version from git

When downloading from git the command is
git clone git://git.ardour.org/ardour/ardour.git
I’m unclear on what is the correct way to pull in 6.3.
What would I put in place of to make it work?

After you’ve done the git clone ..., you’ll need to cd ardour to your newly-cloned local copy, and then do git checkout 6.3 to get the source files as of the 6.3 tag.

Then build as normal: https://ardour.org/building_linux.html

If you ever want to switch back to the main development branch, use git checkout master, and git pull to update it to the latest commit.

Thanks you so much. :grinning:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.