Page 1 of 1

How to clone specific TAG from github?

Posted: Sat Sep 07, 2019 6:03 pm
by newsettler_AI
Hi,

Sorry for newbie question, but I'm completely lost.

I want to get ESP-IDF Release v3.3 (LTS), mentioned here:
https://github.com/espressif/esp-idf/releases

I tried

Code: Select all

git clone --recursive https://github.com/espressif/esp-idf.git --branch release/v3.3
But it gives me RC version:

Code: Select all

$ git describe --tags --dirty
v3.3-rc-24-g148a26980
which is wrong I suppose...

Re: How to clone specific TAG from github?

Posted: Sun Sep 08, 2019 12:58 am
by WiFive
No that's correct, what it means is 24 commits added since tag v3.3-rc, latest commit 148a26980

Re: How to clone specific TAG from github?

Posted: Mon Sep 09, 2019 1:58 am
by WiFive