TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Can i use git for sharing anime/manga collection?

1 pointsby _genovaover 14 years ago
does anyone have any ideas to take advantage of git other than source code management?

3 comments

madhouseover 14 years ago
You might wish to have a look at git-annex: <a href="http://git-annex.branchable.com/" rel="nofollow">http://git-annex.branchable.com/</a><p>The answer in any case is: yes, you can. However, the next question would be: "How?" and "Is it worth it?".<p>I haven't used git-annex yet, but it seems to me, that might be the solution for you. If I wanted to share a lot of big files, I'd certainly give it a try.
pjscottover 14 years ago
What kind of sharing are you aiming to do? How big is your collection, and how many people are you sharing it with? If you'd like something to synchronize directories, you could use rsync. But you'd have to be more specific.<p>As for uses other than source code, there are some wikis which use git as their storage back end, for tracking versions.
tomfakesover 14 years ago
Technically, I guess you could, but this would be a quite a long way from what Git is good at - text files. Git does a bunch of compression of changes that works well for text, and doesn't work at all for binary files. Your pulls and pushes will be very large.<p>This is probably possible, but not a very good idea.