Difference between revisions of "Tortoise GitHub"
From SingletonMillerWiki
m (→References) |
m |
||
Line 4: | Line 4: | ||
*https://github.com/raspberrytorte/tortoise.git | *https://github.com/raspberrytorte/tortoise.git | ||
*https://github.com/luckyjames/RaspberryTorte | *https://github.com/luckyjames/RaspberryTorte | ||
+ | |||
+ | == Install and Setup Git == | ||
+ | #<code> sudo apt-get install git</code> or see [https://help.github.com/articles/set-up-git here] for windows | ||
+ | #<code>git config --global user.name "Your Name Here"</code> | ||
+ | #<code>git config --global user.email "your_email@youremail.com"</code> | ||
== Get the Tortiose Git Code == | == Get the Tortiose Git Code == | ||
taken from [http://git-scm.com/documentation]. On your RPi run the following: | taken from [http://git-scm.com/documentation]. On your RPi run the following: | ||
− | |||
# <code> git clone https://github.com/raspberrytorte/tortoise.git </code> | # <code> git clone https://github.com/raspberrytorte/tortoise.git </code> | ||
Revision as of 15:26, 3 August 2012
Contents
Repositories
Install and Setup Git
sudo apt-get install git
or see here for windowsgit config --global user.name "Your Name Here"
git config --global user.email "your_email@youremail.com"
Get the Tortiose Git Code
taken from [1]. On your RPi run the following:
Build the code
-
cd tortise/bufferboard/gertboard_sw
-
make
Run the code
Commiting changes
git add <newfiles/folders>
git commit -m "commit message"
git push origin master
you'll be asked for your github account details