Skip to content

Instantly share code, notes, and snippets.

View Ma7eer's full-sized avatar

Maher Alkendi Ma7eer

View GitHub Profile

List your name and food/items you'll bring to our Potluck! :)

Name Food
Masoud Banana Bread
Maher Coffee & Tea 😂
Rahma Oats cookies with chocolate chips
@Ma7eer
Ma7eer / startMongoDemon.txt
Last active October 24, 2018 17:15
Start MongoDB
/* for windows */
/* to start mongo demon */
1-Open CMD as admin
2-Go to mongoDB folder
3-navigate to the bin/ folder
4-run mongo.exe (mongod)
/* to access mongo database */
1-Go to bin/ file
@Ma7eer
Ma7eer / gitWorkflow.txt
Last active October 3, 2018 20:08
Github Workflow Rule
1- Have two main branches
1.1- Master (where production code lives)
1.2- Develop (where development code lives)
2- New features are added by creating a feature branch to the Develop branch
3- Create a release branch after featues are added to the develop branch and write tests there
4- merge the release branch with the master branch + develop branch
5- when merging to master add a version tag
6- for Hot fixes create a hot fix branch and merge to master