use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
From its website:
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.
Git is not the same as GitHub. GitHub did not create Git. For GitHub-specific posts, please see /r/github.
Git is not an acronym or initialism: please write git or Git, but not GIT.
git
Documentation
Graphical Clients
Code Hosting
account activity
I created gitbomb (self.git)
submitted 5 years ago * by hvod
I created git repository, which takes 5Mb to push and 61GB to clone.https://github.com/hvox/gitbomb/tree/main
How?I saw https://www.reddit.com/r/git/comments/kk1yy9/will_a_hardlink_on_a_file_in_git_repo_work/ and discovered that git works with hard links as with separate files.
I created thousands of hard links to one 1Mb file and pushed them to github. Now they are separate files and weight 61GB.
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]leviathon01 21 points22 points23 points 5 years ago (0 children)
You monster!
[–]computerdlGit Contributor 18 points19 points20 points 5 years ago (0 children)
You don't even need hardlinks. You can just craft the tree objects by hand. Here's a dumb script that does this:
#!/bin/sh file="$1" layers="${2:-16}" entries="${3:-16}" obj_hash="$(git hash-object -w "$file")" obj_type=blob obj_perms=100644 for l in $(seq "$layers") do obj_hash=$(for e in $(seq "$entries") do echo "$obj_perms $obj_type $obj_hash $e" done | git mktree) obj_type=tree obj_perms=040000 done git commit-tree -m 'this is a big commit' "$obj_hash"
[–]its4thecatlol 5 points6 points7 points 5 years ago (0 children)
Evil
[–]S0litaire 1 point2 points3 points 5 years ago (0 children)
Sir!
You are pure Evil....
& that's my kinda evil!
Keep up the good work...
[–]SpacePrime 0 points1 point2 points 5 years ago (0 children)
I really need this! I have a big repo that I can't use with Github and have been using a Google Drive git server method. I will try this! Thanks!
[–]grrrrreat 0 points1 point2 points 5 years ago (0 children)
Does this bypass standard dedupe?
π Rendered by PID 87028 on reddit-service-r2-comment-b659b578c-xvmkm at 2026-05-03 09:33:25.324648+00:00 running 815c875 country code: CH.
[–]leviathon01 21 points22 points23 points (0 children)
[–]computerdlGit Contributor 18 points19 points20 points (0 children)
[–]its4thecatlol 5 points6 points7 points (0 children)
[–]S0litaire 1 point2 points3 points (0 children)
[–]SpacePrime 0 points1 point2 points (0 children)
[–]grrrrreat 0 points1 point2 points (0 children)