Changes between Version 1 and Version 2 of UsingGit


Ignore:
Timestamp:
08/01/10 14:04:35 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGit

    v1 v2  
    22 
    331) Getting started on github 
    4 - Go to github.com, create an account, log in 
    5 - Go to knowknowledge's Epiar repository page http://github.com/knowknowledge/Epiar and click 'Fork' - this will take an image of knowknowledge's repository for you to use for yourself. This is the repository you will always push your changes to. 
    6 - Go to your new repository, click Admin -> Service Hooks -> Email 
    7 - Put "epiar-commits@epiar.net" in the address field, make it Active and Update Settings -- this will send an update for any pushes you make to your repository to the epiar commits mailing list. 
    8 - You need to set up your ssh keys to be able to push stuff from your local repository to your github repository - follow the instructions here: http://help.github.com/msysgit-key-setup/ 
     4 * Go to github.com, create an account, log in 
     5 * Go to knowknowledge's Epiar repository page http://github.com/knowknowledge/Epiar and click 'Fork' - this will take an image of knowknowledge's repository for you to use for yourself. This is the repository you will always push your changes to. 
     6 * Go to your new repository, click Admin -> Service Hooks -> Email 
     7 * Put "epiar-commits@epiar.net" in the address field, make it Active and Update Settings -- this will send an update for any pushes you make to your repository to the epiar commits mailing list. 
     8 * You need to set up your ssh keys to be able to push stuff from your local repository to your github repository - follow the instructions here: http://help.github.com/msysgit-key-setup/ 
    99 
    10102) Getting the Epiar repository locally 
    1111What I did was pull knowknowledge's master branch locally, made changes to it, and then pushed the changes back up to my own repository. For example: 
    1212 
     13{{{ 
    1314//clone the repository to local 
    1415git clone git://github.com/knowknowledge/Epiar.git 
     
    1920//and push your changes to your repository 
    2021git push upstream <name of local branch you want to push> 
    21  
     22}}} 
    2223 
    23243) Git reference