Changes between Version 99 and Version 100 of DeveloperGuidelines/Git
- Timestamp:
- 06/20/14 16:06:53 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v99 v100 28 28 Get your own copy of the Eden repository (repo) on both !GitHub and your local machine: 29 29 1. Fork the Eden repo at: https://github.com/flavour/eden/fork 30 1. Use git to clone your own new fork down to your PC. (Use the appropriate address form depending on whether you're using a password or ssh keys .)30 1. Use git to clone your own new fork down to your PC. (Use the appropriate address form depending on whether you're using a password or ssh keys, and substitute your own GitHub username.) 31 31 {{{ 32 32 cd web2py/applications 33 33 git clone git@github.com:mygitusername/eden.git 34 34 cd eden 35 git remote add upstream git ://github.com/flavour/eden.git35 git remote add upstream git@github.com:flavour/eden.git 36 36 }}} 37 37