This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Unable to clone git project

Part Number: RM57L843

Hi,

I'm not able to clone git demo project from 'git.ti.com/.../SafetyMCU_Bootloaders'

I'm using below command to clone the repository, but getting error saying access denied.

Regards,

Shantanu S.

  • According to the "clone" on the summary tab on https://git.ti.com/cgit/hercules_examples/hercules_examples/ you have to clone at a higher directory level.

    E.g. the following works:

    $ git clone git://git.ti.com/hercules_examples/hercules_examples.git
    Cloning into 'hercules_examples'...
    remote: Counting objects: 4409, done.
    remote: Compressing objects: 100% (1339/1339), done.
    remote: Total 4409 (delta 2983), reused 4337 (delta 2913)
    Receiving objects: 100% (4409/4409), 61.36 MiB | 4.62 MiB/s, done.
    Resolving deltas: 100% (2983/2983), done.

    Which results in the SafetyMCU_Bootloaders being in a sub-directory of the cloned repository:

    $ ls hercules_examples/Bootloaders/SafetyMCU_Bootloaders/
    clean_all.bat   HALCoGen      readme.txt  RM46Lx  source       TMS570LS07x
    docs            include       RM42Lx      RM48Lx  TMS570LC43x  TMS570LS12x
    F021_Flash_API  make_all.bat  RM44Lx      RM57Lx  TMS570LS04x  TMS570LS31x

  • Thanks this solved my issue.