Repository: Difference between revisions

From Sharpfin
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
== The Sharpfin Repository ==
== The Sharpfin Repository ==


You can now get anonymous access to the Sharpfin repository using SVN.
Now you can get anonymous access to the Sharpfin repository using '''Github'''.
You probably have already installed git, if not you can install it simply by issuing the command:
    sudo apt-get install git-core git-gui git-doc
on a ubuntu/debian box or
    yum install git-core
on redhat/centos.


If you have installed the development tools when you installed cygwin, you will most likely have installed the svn application.  If you are on a Linux box, you will probably have to download and install it from your distribution cd or provider.  At worst, you will have to re-build it from: http://svnbook.red-bean.com/
Instead for development under the WIN OS, install msysgit from:
  https://code.google.com/p/msysgit/downloads/


In a cygwin shell 'bash', or on your Linux box, cd to the local directory you wish to use for the sharpfin code, and type:
In a cygwin shell 'bash', or on your Linux box, cd to the local directory you wish to use for the sharpfin code, and type:
 
     git clone https://github.com/philsmd/sharpfin.git
     svn checkout https://svn.sharpfin.zevv.nl/svn


This will checkout the entire sharpfin tree.
This will checkout the entire sharpfin tree.


You can get full details on how to use SVN from here: http://svnbook.red-bean.com/en/1.4/index.html
You can get full details on how to use git from here: http://schacon.github.com/git/gittutorial.html


If you just want to browse the source without using SVN, just go to http://sharpfin.zevv.nl/websvn/
If you just want to browse the source without using GIT, just go to the github site at https://github.com/philsmd/sharpfin


== Building ==
== Building ==


To compile, you will need a cross-compiler.  Visit the [[Toolchain]] page for details on where to get / how to build a cross-compiler for the Reciva radios.
To compile, you will need a cross-compiler.  Visit the [[Toolchain]] page for details on where to get / how to build a cross-compiler for the Reciva radios.
== Sources ==
[http://book.git-scm.com/2_installing_git.html Installing git]<br/>
[http://rogerdudler.github.com/git-guide/ Git Guide]<br/>
[https://code.google.com/p/msysgit/downloads/list MSYSGit]<br/>

Latest revision as of 16:14, 9 January 2012

The Sharpfin Repository

Now you can get anonymous access to the Sharpfin repository using Github. You probably have already installed git, if not you can install it simply by issuing the command:

   sudo apt-get install git-core git-gui git-doc

on a ubuntu/debian box or

   yum install git-core

on redhat/centos.

Instead for development under the WIN OS, install msysgit from:

  https://code.google.com/p/msysgit/downloads/

In a cygwin shell 'bash', or on your Linux box, cd to the local directory you wish to use for the sharpfin code, and type:

   git clone https://github.com/philsmd/sharpfin.git

This will checkout the entire sharpfin tree.

You can get full details on how to use git from here: http://schacon.github.com/git/gittutorial.html

If you just want to browse the source without using GIT, just go to the github site at https://github.com/philsmd/sharpfin

Building

To compile, you will need a cross-compiler. Visit the Toolchain page for details on where to get / how to build a cross-compiler for the Reciva radios.


Sources

Installing git
Git Guide
MSYSGit