Maybe I'm not fully understanding this.. If I don't need the web interface and public code sharing, why would I use this verse getting a Linode instance and installing git there.
$9 vs $20?
Why I've built an alternative to Github
111–120 of 198 posts
Re: Why I've built an alternative to Github
#112While I do agree that Github leaves space for a model like this, I think the value of Github is that it offers a great community and awesome toolset (online and offline). Then I read this: "I also wanted to do almost everything from my terminal, so I built a CLI, that you can use to manage repositories, public keys and collaborators. For daily usage, you probably won't have to go to our web interface ever again, and…
I still use SVN for a lot of my own personal projects (don't judge me!) and sure I could setup my own SVN server no problem. But I pay a small fee ($50 a year I think.. or maybe $50/6-mos) for SVN hosting. Same situation: I want private repo's. Past that, the only other thing I really want is not to have to worry about ANYTHING. It needs to be secure, backed-up, and quick, without me ever having to give it a 2nd thou…
Re: Why I've built an alternative to Github
#113Earlier quoted context omitted.
Bitbucket somehow manages to maintain a service of similar or greater quality or reliability and has free unlimited private repos. Github is charging more because they can, not because it costs that much to maintain.
People who think that Bitbucket is on par with GitHub are the same kind of people who said that StackOverflow could be cloned in a week. You focus on features but fail to see all the painstaking attention to detail that went into creating these sites.
One funny thing about github is they put so much effort in to being able to diff images and other files, yet their space limits are too low for private repos, if you are versioning anything other than just text files.
Re: Why I've built an alternative to Github
#114Earlier quoted context omitted.
Bitbucket somehow manages to maintain a service of similar or greater quality or reliability and has free unlimited private repos. Github is charging more because they can, not because it costs that much to maintain.
People who think that Bitbucket is on par with GitHub are the same kind of people who said that StackOverflow could be cloned in a week. You focus on features but fail to see all the painstaking attention to detail that went into creating these sites.
Re: Why I've built an alternative to Github
#115I have 100+ private repositories,with about 100 collaborators(many are my clients) and consume just 2.3 gb and pay 100$/month, about 15-20 of the projects are live/active, others are projects which have been delivered or on hold.
Organization as a concept was brought pretty recently on github, my account dates 2008, charging double for just that is not attractive.
I love github, they are coming with awesome features, but in terms of certain features many service firms need, a way to archive the project not counting them for active projects. github is lacking. instead of doubling the service plan every 6-9 months I am willing to give the competing git hosting services a try
Re: Why I've built an alternative to Github
#116Earlier quoted context omitted.
You're reading a lot into one assumption you've made. I'm a grad student. I try out lots of little things. I want to keep them, but I don't want them just on my hard drive (I like them to be available on the Internets). GitHub forces me to open-source those small projects, and I'm usually fine with this, but lots of other people aren't. And if he can offer it for $9, then why shouldn't he? Your complaint is that his…
"I really don't see why you are knocking the OP for making something that fits his (and presumably others) needs." I'm making the case that it doesn't fit his needs, since his reluctance of paying the GitHub price is an example of this: http://theoatmeal.com/blog/apps
What's your problem?
Re: Why I've built an alternative to Github
#117how do these startups get beautiful page designs? hiring those level of designers would require lots of $$ if you ask me.
Here's one way: http://themeforest.net/
Re: Why I've built an alternative to Github
#118I don't get it, why is setting up a private git repository on your own server a hassle? Assuming you have ssh access (compacted for clarity): ssh server "git init --bare repo/project.git" git clone server:repo/project.git Am I missing something? EDIT: mkdir superfluous
That doesn't handle the multi-user authentication/authorisation.
A service like this is nice if you don't have the ability or time to setup your own environments, but in my opinion could be risking a very slim user scenario.
Re: Why I've built an alternative to Github
#119Re: Why I've built an alternative to Github
#120I just use bitbucket.org + Mercurial. More than enough for personal projects, or more, given that it's unlimited. The only limit is amount of users. Switching to Hg was a bit of work, but I've actually learned to like it more than Git. Really though, it's the same kind of thing and I just use both. So I ended up at bitbucket for the same reasons OP built a new site. My way was quicker though.