gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Map function to get all the results from the database | |
* this is specially useful if you're trying to access to | |
* the questions and options as you may want to generate | |
* a report in your system...(not only the answers) | |
* | |
* I mainly did this because of the lack of good examples | |
* on the documentation, only through other github projects | |
* and try and failure. | |
* |