Skip to content

Forking and deploying

Marcel Augsburger edited this page May 8, 2014 · 2 revisions

Fork this project into your own repo

Do this through the github button on the top right side of the project's page. Make any changes in your forked repo, create your own branches (dev, production, etc.), but keep the master branch untouched.

Keep the master branch untouched to stay updated

Use it to sync with the ciudadanointeligente master branch To do this, add ciudadanointeligente as a remote repo

git remote add fci https://github.com/ciudadanointeligente/legislative.git

Keep it synced by pulling changes from the ciudadanointeligente master branch

git checkout master

git pull fci master

git push origin master

Then, merge these changes into your dev or production branch

git checkout production

git merge master

Contribute

Use pull requests in order to add features useful for the community, which after accepted should be reflected on the master branch of the ciudadanointeligente/legislative repo.