Sponsored Content
Full Discussion: Microsoft buys github
Special Forums News, Links, Events and Announcements Microsoft buys github Post 303018346 by Corona688 on Monday 4th of June 2018 11:11:10 AM
Old 06-04-2018
And just a year ago everyone was telling me to move my stuff off my grody home server onto github, where it'll be safer.

I doubt it'll fare any better than skype, which MS bought for the sole purpose of destroying.
 

7 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Oracle buys Sun

On April 20, 2009, Oracle announced that it had agreed to acquire Sun Microsystems. The proposed transaction is subject to Sun stockholder approval, certain regulatory approvals and customary closing conditions. Until the deal closes, each company will continue to operate independently, and it is... (1 Reply)
Discussion started by: imrankhan.in
1 Replies

2. UNIX for Dummies Questions & Answers

GitHub documentation :: GitHub for dummies

Hi I wish to "develop" for brew. It is hosted on GitHub. What book (or online documentation) do you recommend me for GitHub and/or Git? Prefer small physical book. (1 Reply)
Discussion started by: slashdotweenie
1 Replies

3. Shell Programming and Scripting

Bash script - cygwin (powershell?) pull from GitHub API Parse JSON

All, Have a weird issue where i need to generate a report from GitHub monthly detailing user accounts and the last time they logged in. I'm using a windows box to do this (work issued) and would like to know if anyone has any experience scripting for GitAPI using windows / cygwin / powershell?... (9 Replies)
Discussion started by: ChocoTaco
9 Replies

4. What is on Your Mind?

18 year old buys an IBM mainframe...

Hi guys, gals and geeks... 45 minutes and well worth the the watch... Circa 2004 and this guy was 18 in that year when this was recorded... https://www.youtube.com/watch?v=45X4VP8CGtk (0 Replies)
Discussion started by: wisecracker
0 Replies

5. Shell Programming and Scripting

Get data from GitHub using Curl

Dear friends, I am working on a bash script to get data from the github by hitting the API using curl and this is quite straight forward. However the authentication mechanism we have in our github servers makes this intricate. Here is the situation : * The github uses SSO / SAML / opensso... (0 Replies)
Discussion started by: Kochappa
0 Replies

6. Shell Programming and Scripting

Error downloading from GiT: fatal: unable to connect to github.com:

My below command fails with the error as shown: $ sudo git clone git://github.com/ansible/ansible.git Cloning into 'ansible'... fatal: unable to connect to github.com: github.com: errno=Connection refused github.com: errno=Connection refused The ping from my server to github.com is... (2 Replies)
Discussion started by: mohtashims
2 Replies

7. What is on Your Mind?

Bug Reporting and Feature Request Tracking on GitHub

Dear All, I created a "new public repo" on GitHub (without the code for now but will post the code there as needed if anyone wants to fix a bug) You can report any forum bugs and report issues in the GitHub "Issues Tab" for this repo here: https://github.com/unixneo/unix.com.bugtracker ... (0 Replies)
Discussion started by: Neo
0 Replies
Net::GitHub::V2(3pm)					User Contributed Perl Documentation				      Net::GitHub::V2(3pm)

NAME
Net::GitHub::V2 - Perl Interface for github.com (V2) SYNOPSIS
Prefer: use Net::GitHub; my $github = Net::GitHub->new( version => 2, # optional, default as 2 owner => 'fayland', repo => 'perl-net-github' ); Or: use Net::GitHub::V2; # for http://github.com/fayland/perl-net-github/tree/master my $github = Net::GitHub::V2->new( owner => 'fayland', repo => 'perl-net-github' ); DESCRIPTION
NOTE: Github will terminate API v1 and API v2 on May 1st, 2012 <http://develop.github.com/> For those (authentication required), you must set login and token (in <https://github.com/account>). If no login and token are provided, your .gitconfig will be loaded: if the github.user and github.token keys are defined, they will be used. my $github = Net::GitHub::V2->new( owner => 'fayland', repo => 'perl-net-github', login => 'fayland', token => '54b5197d7f92f52abc5c7149b313cf51', # faked ); If you want to work with private repo, you can set always_Authorization. To disable call rate limiting (e.g. if your account is whitelisted), set api_throttle to 0. By default, error responses are propagated to the user as they are received from the API. By switching throw_errors on you can make the be turned into exceptions instead, so that you don't have to check for error response after every call. my $github = Net::GitHub::V2->new( owner => 'fayland', repo => 'perl-net-github', login => 'fayland', token => '54b5197d7f92f52abc5c7149b313cf51', # faked always_Authorization => 1, api_throttle => 0, throw_errors => 0, ); METHODS
repos $github->repos->create( 'sandbox3', 'Sandbox desc', 'http://fayland.org/', 1 ); $github->repos->show(); Net::GitHub::V2::Repositories user my $followers = $github->user->followers(); $github->user->update( name => 'Fayland Lam' ); Net::GitHub::V2::Users commit my $commits = $github->commit->branch(); my $commits = $github->commit->file( 'master', 'lib/Net/GitHub.pm' ); my $co_detail = $github->commit->show( $sha1 ); Net::GitHub::V2::Commits issue my $issues = $github->issue->list('open'); my $issue = $github->issue->open( 'Bug title', 'Bug detail' ); $github->issue->close( $number ); Net::GitHub::V2::Issues object my $tree = $github->obj_tree( $tree_sha1 ); # alias object->tree my $blob = $github->obj_blob( $tree_sha1, 'lib/Net/GitHub.pm' ); # alias object->blob my $raw = $github->obj_raw( $sha1 ); # alias object->raw Net::GitHub::V2::Object network $github->network_meta; # alias ->network->network_meta $github->network_data_chunk( $net_hash ); # alias network->network_data_chunk Net::GitHub::V2::Network organization my $organization = $github->organization->organizations('github'); my $teams = $github->organization->teams('PerlChina'); Net::GitHub::V2::Organizations pull_request my $pull = $github->pull_request->pull_request(); Net::GitHub::V2::PullRequest SEE ALSO
Any::Moose AUTHOR
Fayland Lam, "<fayland at gmail.com>" More on Changes COPYRIGHT &; LICENSE Copyright 2009-2011 Fayland Lam, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-03-30 Net::GitHub::V2(3pm)
All times are GMT -4. The time now is 10:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy