this post was submitted on 29 Mar 2024
10 points (72.7% liked)

Open Source

30786 readers
833 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 5 years ago
MODERATORS
 
  • 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.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 6 months ago* (last edited 6 months ago)

The whole point of opensource is making your source code public. Even if you can disable history viewing in GL, someone can still mirrors your repo and diff it for changes. The only way to not let people see changes is simply not open sourcing it.

Private submodule can help hiding some of your code and configurations, but this only helps hiding parts of the repo, including its history. You can't preventing people measuring changes of your webpage once online as anyone can just archive it.