nxp-mcuxpresso / mcux-sdk

MCUXpresso SDK
BSD 3-Clause "New" or "Revised" License
301 stars 136 forks source link

[BUG] MCUX_2.13.0 is tagged wrongly #106

Closed dnltz closed 1 year ago

dnltz commented 1 year ago

The tag for the v2.13.0 mcux release points to a commit that does not belong to main: https://github.com/nxp-mcuxpresso/mcux-sdk/tree/MCUX_2.13.0

I think it should point to 1df21e6e416f50e98bc4bb8e823adf2ce103f21d (https://github.com/nxp-mcuxpresso/mcux-sdk/commit/1df21e6e416f50e98bc4bb8e823adf2ce103f21d)

dnltz commented 1 year ago

@mcuxcc FYI

mcuxcc commented 1 year ago

Hi @dnltz

I am sorry for the 1df216 commit log may confuse you.

Actually, it is a merge commit, merge 2.13.0 release to main branch.

As main branch is the develop branch, in this branch user can request hotfix from NXP or contribute patch to this branch. But the tag MCUX_2.13.0 is a commit point has been validated by NXP.

dnltz commented 1 year ago

So, I added this repository as a remote to an empty repository and after fetching it, it only shows some tags. See my code snippet below.

Thanks for reaching out that fast to me and sorry for bothering you! Will close this issue since I used it incorrectly.

x:~/tmp$ git clone git@github.com:nxp-mcuxpresso/mcux-sdk.git
Cloning into 'mcux-sdk'...
remote: Enumerating objects: 43095, done.
remote: Counting objects: 100% (7962/7962), done.
remote: Compressing objects: 100% (2677/2677), done.
remote: Total 43095 (delta 5212), reused 7932 (delta 5202), pack-reused 35133
Receiving objects: 100% (43095/43095), 97.54 MiB | 22.65 MiB/s, done.
Resolving deltas: 100% (29623/29623), done.
Updating files: 100% (11842/11842), done.
x:~/tmp$ cd mcux-sdk/
x:~/tmp/mcux-sdk$ git tag
MCUX_2.10.0
MCUX_2.10.0_LPC553S36_RC1
MCUX_2.10.0_LPC55S36
MCUX_2.10.0_aarch64_0.1
MCUX_2.11.0
MCUX_2.11.0_RC1
MCUX_2.11.0_RC2
MCUX_2.11.0_aarch64_0.1
MCUX_2.11.2_RT1170_QMC
MCUX_2.12.0
MCUX_2.12.0_RC1
MCUX_2.12.0_UPDATE
MCUX_2.12.0_UPDATE_RC1
MCUX_2.12.0_UPDATE_RC2
MCUX_2.12.0_aarch64_0.1
MCUX_2.13.0
MCUX_2.13.0_RC1
MCUX_2.13.0_UPDATE
MCUX_2.6.7_K32W0
MCUX_2.6.7_K32W0_RC1
MCUX_2.6.8_K32W0
MCUX_2.9.0
MCUX_2.9.4_MW320
MCUX_2.9.4_MW320_RC1
Real-Time-Edge-v2.4-202212
Real-Time-Edge-v2.4-RC1
x:~/tmp/mcux-sdk$ cd ../
x:~/tmp$ mkdir mcux-sdk-fake
x:~/tmp$ cd mcux-sdk-fake/
x:~/tmp/mcux-sdk-fake$ git init
Initialized empty Git repository in /home/x/tmp/mcux-sdk-fake/.git/
x:~/tmp/mcux-sdk-fake$ git remote add mcux git@github.com:nxp-mcuxpresso/mcux-sdk.git
x:~/tmp/mcux-sdk-fake$ git fetch mcux 
remote: Enumerating objects: 40801, done.
remote: Counting objects: 100% (5805/5805), done.
remote: Compressing objects: 100% (2022/2022), done.
remote: Total 40801 (delta 3768), reused 5618 (delta 3729), pack-reused 34996
Receiving objects: 100% (40801/40801), 86.24 MiB | 22.70 MiB/s, done.
Resolving deltas: 100% (28080/28080), done.
From github.com:nxp-mcuxpresso/mcux-sdk
 * [new branch]        feature/aarch64_support                                        -> mcux/feature/aarch64_support
 * [new branch]        feature/add-device-MCIMX6X-and-MCIMX7D-and-related-imx-drivers -> mcux/feature/add-device-MCIMX6X-and-MCIMX7D-and-related-imx-drivers
 * [new branch]        feature/add-device-MKE1xF16-MKV5xF14                           -> mcux/feature/add-device-MKE1xF16-MKV5xF14
 * [new branch]        feature/add-legacy-device-for-zephyr                           -> mcux/feature/add-legacy-device-for-zephyr
 * [new branch]        feature/cherry-pick-overwritten-commit-after-2.10.0-update     -> mcux/feature/cherry-pick-overwritten-commit-after-2.10.0-update
 * [new branch]        feature/enable-zephyr-integration                              -> mcux/feature/enable-zephyr-integration
 * [new branch]        feature/heterogeneous_multicore                                -> mcux/feature/heterogeneous_multicore
 * [new branch]        feature/kconfig_framework                                      -> mcux/feature/kconfig_framework
 * [new branch]        main                                                           -> mcux/main
 * [new branch]        zephyr-module                                                  -> mcux/zephyr-module
 * [new tag]           MCUX_2.12.0_aarch64_0.1                                        -> MCUX_2.12.0_aarch64_0.1
 * [new tag]           MCUX_2.10.0                                                    -> MCUX_2.10.0
 * [new tag]           MCUX_2.12.0                                                    -> MCUX_2.12.0
 * [new tag]           MCUX_2.12.0_UPDATE                                             -> MCUX_2.12.0_UPDATE
 * [new tag]           MCUX_2.9.0                                                     -> MCUX_2.9.0
 * [new tag]           Real-Time-Edge-v2.4-202212                                     -> Real-Time-Edge-v2.4-202212
 * [new tag]           Real-Time-Edge-v2.4-RC1                                        -> Real-Time-Edge-v2.4-RC1
x:~/tmp/mcux-sdk-fake$ git tag
MCUX_2.10.0
MCUX_2.12.0
MCUX_2.12.0_UPDATE
MCUX_2.12.0_aarch64_0.1
MCUX_2.9.0
Real-Time-Edge-v2.4-202212
Real-Time-Edge-v2.4-RC1