-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include Github https repository getter utility #243
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See minor change suggestions inside
const spiner = new Spinner('Retrieving your Project, please wait...'); | ||
spiner.start(); | ||
|
||
github.getRepo(gitHubMeta, spiner).then(function(repo) { | ||
console.log("Got Project: ", gitHubMeta.repo) | ||
spiner.stop(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const spiner = new Spinner('Retrieving your Project, please wait...'); | |
spiner.start(); | |
github.getRepo(gitHubMeta, spiner).then(function(repo) { | |
console.log("Got Project: ", gitHubMeta.repo) | |
spiner.stop(); | |
const spinner = new Spinner('Retrieving your Project, please wait...'); | |
spinner.start(); | |
github.getRepo(gitHubMeta, spinner).then(function(repo) { | |
console.log("Got Project: ", gitHubMeta.repo) | |
spinner.stop(); |
var download = require("download"); | ||
var request = require('request'); | ||
|
||
var getRepo = (inputs, spiner) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var getRepo = (inputs, spiner) => { | |
var getRepo = (inputs, spinner) => { |
Includes a javascript utility which enables a developer to GET a private GitHub Repository from an Organization over HTTPS (no GIT) using the CLI.
@azizshamim