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.

CC2650STK: Git/source control question

Part Number: CC2650STK
Other Parts Discussed in Thread: CC2650

Looking for ideas on how to manage our CC2650 project in Git. We have 3 different repositories corresponding to 3 different project folders so a new developer would need to independently install the BLE Stack, and then clone the repositories into their corresponding folders. This is not very clean and doesn't handle versioning of the BLE Stack itself. At what level are your repositories typically set up? Do you just Git ignore the plethora of example projects that you don't need?

  • I'll let others chime in here but we just add our SDKs to Git and set the .gitignore for trivial files, e.g.:

    **/Obj/
    **/Exe/
    **/Debug/
    **/Flash/
    **/FlashROM/
    **/configPkg/
    **/settings
    **/config/src
    *.dep
    *.log
    *.ewt
    *.tmp
    *.bak
    *.obj
    *.a
    *.pos
    *.pp

    Best wishes