Earlier quoted context omitted.
Honest question: why do you need a central repository (SVN style) if it's a private repo? I tend to develop my own projects mostly on two different machines, and the core code management and synchronization doesn't need anything but git itself. Is it so you can use bug trackers etc?
Hmmm..how does synchronization work without a server or direct connection?
Bitbucket passes one million users
61–70 of 188 posts
Re: Bitbucket passes one million users
#62Earlier quoted context omitted.
Me too. Public repos github, private bitbucket.
Honest question: why do you need a central repository (SVN style) if it's a private repo? I tend to develop my own projects mostly on two different machines, and the core code management and synchronization doesn't need anything but git itself. Is it so you can use bug trackers etc?
Re: Bitbucket passes one million users
#63Kidoteca uses Bitbucket, because for us our GIT serving is free :) Also I use their SourceTree GUI GIT tool, it is really nice too. Now this is looking like a ad for Atlassian, I should charge them :P
Re: Bitbucket passes one million users
#64I use Bitbucket at work. And it stinks compared to Github.
Re: Bitbucket passes one million users
#65Earlier quoted context omitted.
JIRA is pretty sweet to keep things in order. Really? I use and love BitBucket, but the last 2 places I worked at used JIRA and it was the worst project management tool I've ever used. I'm sure someone will say they didn't configure it right or educate the devs or something. Seriously though, it was pushed down from upper management in both cases and it was a terrible experience. Then they thought Greenhopper would f…
You must have never used Rally? Because while I'm not a huge fan of JIRA (I've only used it in the past year so I don't know what it was like 4 years ago), I've unfortunately seen much worse.
Re: Bitbucket passes one million users
#66I use Bitbucket at work. And it stinks compared to Github.
I don't particularly see the difference and switch between both pretty much daily - granted I don't take advantage of Github social features really.
Re: Bitbucket passes one million users
#67Mercurial is a better tool than Git in almost every aspect. It's easy to learn and gets out of your way. I chose it over git a few years ago and sticked with it ever since and used Bitbucket to host most of my stuff. You don't get the community that Github has, but the hosting is great.
> Mercurial is a better tool than Git in almost every aspect. No need to proclaim personal tastes as absolute truths around here. In any case, Bitbucket has complete git support.
Re: Bitbucket passes one million users
#68Re: Bitbucket passes one million users
#69With Github, a deploy key has read-write access to repos, and each key can only be attached to a single repo.
However, with Bitbucket, a deploy key has read-only access to repos, and each key can be attached to more than one repo.
Re: Bitbucket passes one million users
#70Mercurial is a better tool than Git in almost every aspect. It's easy to learn and gets out of your way. I chose it over git a few years ago and sticked with it ever since and used Bitbucket to host most of my stuff. You don't get the community that Github has, but the hosting is great.
I feel like I am taking crazy pills whenever somebody says that mercurial is simpler than git. Mercurial's per-file revlog and structured .hg/store/data is way weirder / more complex than git's SHA-addressed DAG with minimal/orthogonal object types. The only real blemish on git is that lightweight tags should not exist.
The tooling around it? Not so much. http://stevelosh.com/blog/2013/04/git-koans/