Difference between revisions of "Tortoise GitHub"

From SingletonMillerWiki
Jump to: navigation, search
m (revised TJs link)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Category:RaspberryTortoise]]
 
[[Category:RaspberryTortoise]]
  
== Repositories ===
+
== Repositories ==
 
*https://github.com/raspberrytorte/tortoise.git
 
*https://github.com/raspberrytorte/tortoise.git
*https://github.com/luckyjames/RaspberryTorte
+
*https://github.com/luckyjames/tortoise.git
 +
 
 +
== 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 ==
 +
taken from [http://git-scm.com/documentation]. On your RPi run the following:
 +
# <code> git clone https://github.com/raspberrytorte/tortoise.git </code>
 +
 
 +
== Build the code ==
 +
# <code> cd tortise/bufferboard/gertboard_sw</code>
 +
# <code> make</code>
 +
 
 +
== Run the code ==
 +
 
 +
== Commiting changes ==
 +
#<code>git add <newfiles/folders> </code>
 +
#<code>git commit -m "commit message"</code>
 +
#<code>git push origin master</code>
 +
 
 +
you'll be asked for your [https://github.com/ github] account details
 +
 
 +
== References  ==
 +
#[http://git-scm.com/documentation http://git-scm.com/documentation]
 +
 
 +
https://github.com/quick2wire
 +
http://pypi.python.org/pypi/RPi.GPIO
 +
http://code.google.com/p/raspberry-gpio-python/

Latest revision as of 14:30, 22 August 2012


Repositories

Install and Setup Git

  1. sudo apt-get install git or see here for windows
  2. git config --global user.name "Your Name Here"
  3. git config --global user.email "your_email@youremail.com"

Get the Tortiose Git Code

taken from [1]. On your RPi run the following:

  1. git clone https://github.com/raspberrytorte/tortoise.git

Build the code

  1. cd tortise/bufferboard/gertboard_sw
  2. make

Run the code

Commiting changes

  1. git add <newfiles/folders>
  2. git commit -m "commit message"
  3. git push origin master

you'll be asked for your github account details

References

  1. http://git-scm.com/documentation

https://github.com/quick2wire http://pypi.python.org/pypi/RPi.GPIO http://code.google.com/p/raspberry-gpio-python/