• 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.

  • LemmyQuestOP
    link
    22 months ago

    No, I meant that I wanted to hide old commit history.

    • @TootSweet@lemmy.world
      link
      fedilink
      English
      82 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.)

    • Daniel Quinn
      link
      fedilink
      English
      72 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
        link
        fedilink
        English
        22 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.