Does anyone know of a simple utility to host a remote on your local machine so that a small team can take advantage of git's DVCS in the event that a service like GitHub goes down?
GitHub is "experiencing major service outages"
31–40 of 49 posts
Re: GitHub is "experiencing major service outages"
#32Does anyone know of a simple utility to host a remote on your local machine so that a small team can take advantage of git's DVCS in the event that a service like GitHub goes down?
$ git remote add origin2 user@your-ip:/path/to/repo.git
To create repo.git: $ mkdir repo.git
$ cd repo.git
$ git --bare initRe: GitHub is "experiencing major service outages"
#33Does anyone know of a simple utility to host a remote on your local machine so that a small team can take advantage of git's DVCS in the event that a service like GitHub goes down?
Re: GitHub is "experiencing major service outages"
#34Earlier quoted context omitted.
And how will Bitbucket magically handle DDOS? Please do share. You are blaming Github for being attacked by DDOS?
Not OP, but my last project on github ran for about 6 months and had at least 3 outages on the order minutes or hours. Didn't shut down the project, but it was worrisome and I don't think they were DDoS attacks.
Re: GitHub is "experiencing major service outages"
#35Re: GitHub is "experiencing major service outages"
#36Re: GitHub is "experiencing major service outages"
#37I don't really understand why this is that big of a deal. Okay, I pay for github and they have downtime, that sucks. But git is designed to be distributed and your workflow can be partition tolerant. I honestly don't care if github goes down for a few hours; it doesn't stop anyone on my team from continuing to work. Now if they have days of downtime... that could be an issue and I would probably look to host reposito…
but issues are not distributed, as an example.
Re: GitHub is "experiencing major service outages"
#38Correct me if I'm wrong but isn't there very little someone can do to mitigate a DDoS attack? Github just happens to be a very large target; BitBucket or alternatives are just as vulnerable.
The DDoS-proof solution is to put your repo on your own infrastructure.
Re: GitHub is "experiencing major service outages"
#39I don't really understand why this is that big of a deal. Okay, I pay for github and they have downtime, that sucks. But git is designed to be distributed and your workflow can be partition tolerant. I honestly don't care if github goes down for a few hours; it doesn't stop anyone on my team from continuing to work. Now if they have days of downtime... that could be an issue and I would probably look to host reposito…
> But git is designed to be distributed and your workflow can be partition tolerant. but issues are not distributed, as an example.
$ git add . $ git commit -m 'fixing #23'