Una aplicación web para validar colaborativamente el escrutinio provisorio
Para colaborar con el proyecto:
- Forkear el proyecto en tu cuenta de github
- Clonar el fork desde la terminal con $ git clone (url de tu fork, proyecto en tu github)
- Desde la terminal agregar el repo original $ git remote add upstream
Algunas cosas útiles:
Pushes commits to your remote repository stored on GitHub
Fetches any new changes from the original repository
Merges any changes fetched into your working files
Creates a new branch called "mybranch"
Makes "mybranch" the active branch
Makes "master" the active branch
Merges the commits from "mybranch" into "master" ###$ git branch -d mybranch Deletes the "mybranch" branch
visit https://help.github.com/articles/using-pull-requests to learn how to send your contribution to the original repo.