Changes between Version 117 and Version 118 of DeveloperGuidelines/Git
- Timestamp:
- 03/03/16 12:55:37 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v117 v118 504 504 Merge branch with trunk using normal Bzr tools 505 505 506 Assuming that you have already [https://github.com/ flavour/eden/fork_select forked Eden Trunk], then you will need to create a new repository manually for additional branches, as you cannot [http://bitdrift.com/post/4534738938/fork-your-own-project-on-github fork your own project on GitHub]:506 Assuming that you have already [https://github.com/sahana/eden/fork_select forked Eden Trunk], then you will need to create a new repository manually for additional branches, as you cannot [http://bitdrift.com/post/4534738938/fork-your-own-project-on-github fork your own project on GitHub]: 507 507 * https://github.com/repositories/new 508 508 {{{ 509 509 cd web2py/applications 510 git clone git@github.com: flavour/eden.git <mybranch>2510 git clone git@github.com:sahana/eden.git <mybranch>2 511 511 }}} 512 512 * Move {{{.git}}} & {{{.gitignore}}} from <mybranch>2 to <mybranch> … … 524 524 git commit -am "Initial Git version of My branch" 525 525 git push -u origin master 526 git remote add upstream git://github.com/flavour/eden.git 527 }}} 526 git remote add upstream git://github.com/sahana/eden.git 527 }}} 528 }}}