forked from PhiladelphiaGameLab/Lux
-
Notifications
You must be signed in to change notification settings - Fork 0
Workflow
Alpha59 edited this page Apr 14, 2015
·
10 revisions
-
Fork the repository under your account
-
Clone the repository to your local machine/designated Dev Server
$ cd /var/www/html/ $ git clone https://github.com/<username>/Lux.git $ cd Lux -
Enter Username/password
-
Assign upstream to the original
$ git remote add upstream https://github.com/PhiladelphiaGameLab/Lux.git $ git fetch upstream -
Push commits to local repository
$ git add <file1> <file2> $ git commit -m "message about changes" -
Push commits to your fork
$ git push origin master -
When needed you can pull in and update your repository with
$ git fetch upstream $ git merge upstream/master -
Create pull request on github when your section is complete
-
Changes will be confirmed and merged on github