GitHub's down?
61–70 of 154 posts
Re: GitHub's down?
#62Re: GitHub's down?
#63For everyone who is currently loosing productivity, perhaps your time might be well spent reviewing `git daemon`: http://git-scm.com/book/en/v2/Git-on-the-Server-Git-Daemon
Re: GitHub's down?
#64Re: GitHub's down?
#65For everyone who is currently loosing productivity, perhaps your time might be well spent reviewing `git daemon`: http://git-scm.com/book/en/v2/Git-on-the-Server-Git-Daemon
how does that help for the long long lists of external dependencies, for the bugtrackers of projects where I'd like to look up if someone else had the same issue and maybe there's a workaround, to view and compare code for older revisions of projects I'm using? With a ton of projects now hosted on github, github being down is a major dent in my overall productivity even though we _do_ have an internal git server.
Re: GitHub's down?
#66Re: GitHub's down?
#67Octobot iOS app: http://octobotapp.com
And my own service, StatusGator: https://statusgator.io
Re: GitHub's down?
#68Earlier quoted context omitted.
Exactly ... we've got Ansible scripts that do that. One of the current Java rockstars (not my description), Adam Bien, recommends pulling the source code for all third-party dependencies to build them locally and put them in a local repository. I suppose you can push directly back upstream to avoid having an extra step.
If you're using Java most of the build tools use the Maven repositories, for which you can set up a local mirror too. The company i work for runs a Sonatype Nexus so we're not really affected by others' downtime unless we need stuff that we hadn't ever used before.
Re: GitHub's down?
#6911:54 UTC "We've finished emergency maintenance and are monitoring closely".
Re: GitHub's down?
#70For everyone who is currently loosing productivity, perhaps your time might be well spent reviewing `git daemon`: http://git-scm.com/book/en/v2/Git-on-the-Server-Git-Daemon
OK I get what you're saying, but honestly, who is really 'losing productivity'? I suspect the ones saying they are in fact just getting on with other tasks they can do because they are, despite github, still using distributed version control and do have access to and the ability to commit to code repositories. You don't need to host your own git daemon or github clone to get that functionality. I don't use github bec…