this post was submitted on 01 Oct 2023
26 points (93.3% liked)

Git

2632 readers
1 users here now

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Resources

Rules

  1. Follow programming.dev rules
  2. Be excellent to each other, no hostility towards users for any reason
  3. No spam of tools/companies/advertisements. It’s OK to post your own stuff part of the time, but the primary use of the community should not be self-promotion.

Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.

founded 1 year ago
MODERATORS
 

I see this so often, but I don't understand it. Some people just fork a huge amount of repos and never commit anything to them. What's the point? Are they trying to pad their profile for potential employers or what?

It just clutters your active repos. Personally, I just remove forks once my PR gets merged upstream. And I only fork when I'm ready to push a commit.

Is there something I'm missing?

all 12 comments
sorted by: hot top controversial new old
[–] hperrin 40 points 9 months ago (2 children)

I’ve forked a couple projects that I just wanted a copy of in case the upstream is deleted.

[–] [email protected] 6 points 9 months ago

this is my reasoning also

[–] [email protected] 2 points 9 months ago (1 children)

Can't you clone a previous build? Actual noob here, serious question

[–] hperrin 9 points 9 months ago (1 children)

I’m not sure what you mean, but if someone deletes their GitHub repo, there’s no way to fork it. If you forked it before they deleted it, then your fork remains.

[–] [email protected] 2 points 9 months ago

I see, thanks

[–] [email protected] 28 points 9 months ago

They might not have always been empty. Could be that there was a branch for a PR that got merged, so the branch was deleted.

[–] [email protected] 9 points 9 months ago

In my case, it's a TODO list. But often, life gets in between and I forget.

[–] [email protected] 9 points 9 months ago

I fork the version I deploy in prod across multiple machines. I find it makes my life easier and I never need to learn any cli other than git clone and git pull.

[–] [email protected] 1 points 7 months ago

Tbf forks should be separated in the repo view on GitHub from repos you've created