Changes between Version 2 and Version 3 of LeaveTheNest

Show
Ignore:
Timestamp:
01/12/09 20:24:21 (13 years ago)
Author:
barney
Comment:

Tell how HQ9+ left the nest

Legend:

Unmodified
Added
Removed
Modified
  • LeaveTheNest

    v2 v3  
    3030 
    3131 
     32= Another use case: What HQ9plus did = 
    3233 
     34http://github.com is another option for where to fly to after leaving the nest. I, barney, did this to the toy language HQ9plus in order to get 
     35my feet wet with git. 
     36 
     37== Create your local git repository == 
     38 
     39{{{ 
     40cd ~ 
     41mkdir source 
     42cd source 
     43git svn clone -s -r HEAD https://svn.perl.org/parrot  
     44cp -r parrot/languages/hq9plus ~ 
     45cd ~/hq9plus 
     46git init 
     47git add . 
     48git commit 
     49}}} 
     50== Create an empty repository on github.com == 
     51 
     52For using the public plan you need to supply an username, your Email-adress and a public SSH-key. 
     53After that I followed the instructions and created an empty repository called 'hq9plus'. 
     54 
     55== Push your local repository onto github == 
     56 
     57Pushing the project onto github can then be done with: 
     58 
     59{{{ 
     60git remote add origin git@github.com:bschmalhofer/hq9plus.git 
     61git push origin master 
     62}}} 
     63 
     64See the result on http://github.com/bschmalhofer/hq9plus/tree/master. 
     65 
     66== Licensing == 
     67 
     68As license I choose to stay with Artistic 2.0. 
     69 
     70== Copyright == 
     71 
     72Nor sure, whether copyright messages should be added. 
     73 
     74== More to come == 
     75 
     76 
     77 
     78  
     79 
     80 
     81 
     82 
     83