Thursday 17 October 2013

Raspberry Pi Download Git

This is a quick post on how to download a git repository to a *nix machine - in this case a Raspberry Pi. I did it to get some cool code that my colleague had interneted/clouded to download to my Raspberry Pi.

Git Path: 


Your git repository is on path: https://github.com/mygithub/mygitrepository

Install git:

sudo apt-get install git-core

Create a directory for your git downloads:

mkdir ~/mygitdownloads
cd ~/mygitdownloads

Go get your git repository:

git clone https://github.com/mygithub/mygitrepository





No comments:

Post a Comment