GitHub Repo Clone: Difference between revisions

From LD Smith Games Workshop
Jump to navigation Jump to search
(Created page with "Loops through all of the public and private repositories for a user, and clones them to the local system == Requirements == * Ruby installed - https://www.ruby-lang.org/en/do...")
 
 
Line 22: Line 22:


== Download / Source Code ==
== Download / Source Code ==
*https://github.com/gatechgrad/clone_github_repos
* https://github.com/levidsmith/clone_github_repos

Latest revision as of 20:53, 12 June 2020

Loops through all of the public and private repositories for a user, and clones them to the local system

Requirements

Setup

  • Copy Personal access token value (should be a hexadecimal string), and paste it for the value of API_TOKEN
  • Set CLONE_DIR to the directory where the cloned projects should exist (double backslash may be required on Windows)

Running

  • Start Git bash
  • ruby clone_git_repos.rb

Download / Source Code