- Menstrual cycle tracker
- Diet myths, facts and food to be eaten.
- Precautions and Remedies to be used.
- Chat forum to contact medical advisor
- Awareness on topics such as breast cancer, cervical cancer and idealogies.
- Provides medical reminder.
- Adding a separate space for small businesses.
- Direct contact with a gynecologist to provide medical help.
- Portal to sell/buy the necessities.
-
Install git in your machine.
-
Have basic command line experiance.
-
have basic knowledge of html , css and JS .
-
Fork this repository
Click the button on top right corner labelled fork.
-
Clone this repository using the link into your local machine.
On the forked repo click the green button labelled code and copy the https url.
Once it is copied open the terminal/cmd and type in the following code
git clone "http url you just copied"
-
Going to the required project directory
cd HacktoberFest-Projects-2021
-
Create a branch
The best practise is to create another branch work on it and finally merge it .
So after changing to project directory ,to creata new branch type in the foll code.
git checkout -b your_new_branch_name
for example :
git checkout -b branch-2
-
Add the necessary contribution and commit those contributions.
After making the changes type in the below command this command will let you know which files have been modified.
git clone
Add those changes to the branch you just created using the below command.
git add .
Now commit those changes using the below command:
git commiit -m "The changes that you done must be mentioned here"
-
Push changes to github
Push your changes using the below command:
git push origin branch_name
replace branch_name with the name of the branch you created earlier.
For example:
git push origin branch-2
-
Submit your changes for review
If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.
Then if you want to mention anything about the changes type it in and finally submit the pull request.