• Can I opensource it in a way where changes is not open to the public?
  • I have google verification file on my git, is it ok to put it in the public?

The platform is gitlab.

  • TootSweet@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    6 months ago

    Open Source is sometimes described as “anyone can contribute”, but that’s an oversimplification. Open Source projects always have a gatekeeper or small community of gatekeepers who decide which contributions are actually incorporated into the project and which are rejected as not up to snuff or straight up bad ideas or whatever.

    That’s what you meant by your first question, right? Not “how do I hide the code of future changes” but “how do I retain control over what code is added to my repo”, correct?

    Even if you meant it the other way, you could theoretically do that. Open Source one version and then never release any newer versions.

    • LazaroFilm@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      6 months ago

      To me open source means you have access to the source code. You can choose to modify it and let the author know you modified it. It’s up to the author to decide if they want to implement the changes.

      • Daniel Quinn@lemmy.ca
        link
        fedilink
        English
        arrow-up
        0
        ·
        6 months ago

        You can always just reset your git history:

        $ git reset [your first commit hash]
        $ git add .
        $ got commit -m "Collapse git history"
        $ git push -f
        
        • lemmyvore@feddit.nl
          link
          fedilink
          English
          arrow-up
          0
          ·
          6 months ago

          You’d have to collapse all branches not just one, and remove all tags, in order to clear the whole graph.

          And of course you have to be allowed to – GitHub can have protected branches, protected tags, and force push protection.

          Assuming you’re the repo owner and can do all that it still would’t affect other people’s already existing clones, only new clones.

      • TootSweet@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        6 months ago

        Ah! Yes. No reason why you couldn’t. It would require making a new repo, copying the files into the new repo, and committing in one big commit before pushing to gitlab, but yeah. Definitely doable.

        (I basically always do this myself. I don’t start the Git repo until I want to Open Source it. So when I first Open Source it, it’s a “complete” (or at least “minimum-viable-product”) project and there’s only one commit. Every commit I make and push thereafter is public, but there aren’t any from before my first push/publish.)