Skip to content
Alpha59 edited this page Apr 14, 2015 · 10 revisions

Forking

  1. go to https://github.com/PhiladelphiaGameLab/Lux

  2. Fork the repository under your account

  3. Clone the repository to your local machine/designated Dev Server

     $ cd /var/www/html/
     $ git clone https://github.com/<username>/Lux.git
     $ cd Lux
    
  4. Enter Username/password

  5. Assign upstream to the original

     $ git remote add upstream https://github.com/PhiladelphiaGameLab/Lux.git
     $ git fetch upstream
    
  6. Push commits to local repository

     $ git add <file1> <file2>
     $ git commit -m "message about changes"
    
  7. Push commits to your fork

     $ git push origin master
    
  8. When needed you can pull in and update your repository with

     $ git fetch upstream
     $ git merge upstream/master
    
  9. Create pull request on github when your section is complete

  10. Changes will be confirmed and merged on github

Clone this wiki locally