Page 1 of 1

Tagged version differences in git (release/v4.3 vs v4.3)

Posted: Thu Jan 06, 2022 12:12 am
by gbsinclair@gmail.com
Hi
Can someone please tell me what the difference is between
1. git clone -b release/v4.3 --recursive https://github.com/espressif/esp-idf.git
and
2. git clone -b v4.3 --recursive https://github.com/espressif/esp-idf.git

The downloaded idf is different in each case. So which version is the official release of v4.3?

The sources of these commands:
1. https://docs.espressif.com/projects/esp ... et-esp-idf
2. https://github.com/espressif/esp-idf/releases/tag/v4.3

Thanks
Grant

Re: Tagged version differences in git (release/v4.3 vs v4.3)

Posted: Thu Jan 06, 2022 2:51 am
by ClockToshi
The former is the branch the latter is the tag.
For production use you want the tag generally as the branch is a moving target.

Re: Tagged version differences in git (release/v4.3 vs v4.3)

Posted: Fri Jan 07, 2022 12:11 am
by gbsinclair@gmail.com
Thanks for the reply, I appreciate your time :D

Grant