Hi, I’m writing a script that incorporates some functionality from another script. The other script is developed and maintained by someone else, hosted on github and released under the MIT license. What is the best way to incorporate that other repo into my own with an easy way to keep it updated when the other developer releases a new version. I don’t really intend to contribute to the other repo, just use their code.

  • Maiznieks
    link
    fedilink
    English
    121 year ago

    Submodules is the way to go, but really it’s always a good idea to use tagged releases or commit id’s for code from upstream as they might implement a breaking change at some point, taking Your project down with it.

    • @[email protected]
      link
      fedilink
      English
      61 year ago

      It’s probably also good to link to a fork of the repo in question, in case the original disappears.

      • @[email protected]
        link
        fedilink
        English
        1
        edit-2
        1 year ago

        take a look at subtree, it incorporates the history of the upstream repository into your repository easily and if the upstream vanishes one day, you would still have a full repo history of upstream

  • @rmam
    link
    English
    2
    edit-2
    1 year ago

    deleted by creator

  • @[email protected]
    link
    fedilink
    English
    2
    edit-2
    1 year ago

    Couple of others have suggested to Submodules. git subtree is another alternative. Personally, I felt subtree much more easier to use.